How do I create a SysHeader32 control in C #?

I am in the process of creating a custom control in C # for a business process. As part of this, I need to create what looks like a title in the list view.

I've done this in the past using Visual C ++ (6.0: blush :). I haven't found a way to do this in C # (2.0). Anyone have any suggestions or links?

thanks

0


a source to share


2 answers


As someone who did just that, it wasn't easy for me. My possible solution and the ones I found online was to wrap a Win32 SysHeader32 window in C #. (It wasn't easy.) Getting familiar with Win32 and P / Invoke. This was one of the sites I found in my search. Here still . (SysHeader32 C # control, etc., some results appear on Google.)



+2


a source


There are many resources for creating custom resources: http://www.google.com/search?rlz=1C1CHMB_enUS318US318&sourceid=chrome&ie=UTF-8&q=C%23+custom+control



I recommend starting at MSDN and branching out from there if you need more examples.

0


a source







All Articles