1
vote
3answers
128 views
How do you find out if a control derives from a class
I have a list of controls (_controlList) and from that list of controls I want to get the ones that derive from a given class. So I have code that looks like this.
List<Control&g …
1
vote
1answer
155 views
Why do I see ‘Restricted’ in my DevExpress.XtraEditors.DateEdit control
From a customer site we have a screenshot of one of our DevExpress date controls (DateEdit) showing the text 'Restricted' where the date is normally shown, has anybody seen this or know why it migh …
1
vote
Design time serialization in C#
Could you put more code up of the class that is having the serialization issue, maybe the constructor and the property to give reference to the variables you're using.
Just a note:
I've had …
1
vote
Comment the interface, implementation or both?
We just comment the interface, comments are so easy to get out of sync with either the derived or base class/interface that's it's nice to have it in just one place.
Although it looks like …
0
votes
Int To String?
John this is off topic but have you considered with this method to pass in a class made up of each of the sub items to add. So:
class ListItem
{
public string Name {get; set;}
p …
