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

c++ - Function signature as a function template parameter -

algorithm - What are some ways to combine a number of (potentially incompatible) sorted sub-sets of a total set into a (partial) ordering of the total set? -

How to call a javascript function after the page loads with a chrome extension? -