Skip to content

Commit

Permalink
* Documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
PWagner1 committed Mar 14, 2022
1 parent 38df1d9 commit 21c5f88
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ public InputControlStyleConverter()
new(InputControlStyle.Custom2, "Custom2"),
new(InputControlStyle.Custom3, "Custom3"),
new(InputControlStyle.PanelClient, "Panel Client"),
new(InputControlStyle.PanelAlternative, "Panel Alternative")
new(InputControlStyle.PanelAlternative, "Panel Alternative"),
// new(InputControlStyle.Disabled, "Disabled")
};

#endregion
Expand Down
14 changes: 13 additions & 1 deletion Source/Krypton Components/Krypton.Toolkit/General/Definitions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1345,8 +1345,20 @@ public enum InputControlStyle
Custom1,
Custom2,
Custom3,
/// <summary>
/// Specifies a panel client input style.
/// </summary>
PanelClient,
PanelAlternative
/// <summary>
/// Specifies the panel alternative input style.
/// </summary>
PanelAlternative,
/*
/// <summary>
/// Specifies the disabled input style.
/// </summary>
Disabled
*/
}
#endregion

Expand Down

0 comments on commit 21c5f88

Please sign in to comment.