listcontrol

WPF Custom Control for Side by Side Layout

I want to create a custom control so that I can do something like this: <SideBySide> <StackPanel SideBySide.Left="True">...</StackPanel> <StackPanel SideBySide.Right="False">...</StackPanel> </SideBySide> I'm going to be using this all over the place, with obviously more options (sizing, etc.). I've considered using a Panel s...

is there such list control in c++

I am using MFC. I need a control just like listControl, it has such functions: MyListControl mylistControl = new MyListControl(); mylistControl.setDataSource(...); mylistControl.setSQLStatement("select a, b, c, d from table where a > 3"); and system will have a listControl which is populated with the data from database, and generate t...

How to extend listControl class in C++ and add new functions ?

Hi I need to extend the CListControl class in C++/MFC, which will add several new features in the list control, Any one have good sample code ? Or could you please tell me how can i start it ? Thanks in advance! Or just write the new features and listControl into a ActiveX or COM ?? Which is better ? ...

When does .NET's ListControl update its text from ToString() of its members?

I have a class which can change the value it returns in ToString(), but the ListBox which contains instances of this class in Items. The ListBox doesn't show this change unless I add or remove some item to the ListBox which is when refreshes the list, how can I make it refresh the list myself? ...

How to implement a FIFO listcontrol in MFC ?

I need to implement a list control using MFC with the number of lines being fixed. It should Use FIFO with the number of lines being a fixed number. Is there an inbuilt option to this? Or a programmable method. ...

Custom CListCtrl

Hi! I need to create a ListControl in MFC, each row having different number of columns. How can I do this? Thanks Tarun ...