Changing winform style in C# -


okay, of may familiar krypton toolkit component factory. if not, check out here.

anyways, can change form style using toolkit opening designer code form , changing line:

inherits system.windows.forms.form 

to this:

inherits componentfactory.krypton.toolkit.kryptonform 

that visual basic though. achieve using c#.

in form's code-behind file instead of this:

public partial class form1 : form 

type this:

public partial class form1 : componentfactory.krypton.toolkit.kryptonform 

note, isn't changing of form's style, changing of base class. open code-behind, should press f7 in designer default.


Comments

Popular posts from this blog

Winapi c++: DialogBox hangs when breaking a loop -

vb.net - Font adding using PDFsharp -

javascript - jQuery iScroll clickable list elements while retaining scroll? -