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

Perl - how to grep a block of text from a file -

delphi - How to remove all the grips on a coolbar if I have several coolbands? -

javascript - Animating array of divs; only the final element is modified -