Tagged Questions
The componentmodel tag has no wiki summary.
12
votes
1answer
715 views
What is the difference between IEditableObject and IRevertibleChangeTracking?
What is the difference between IEditableObject and IRevertibleChangeTracking (both from the System.ComponentModel namespace)? It looks as if the first supports explicit transaction whilst the second ...
4
votes
1answer
323 views
.NET Component Model explanation
First of all, I have to say that I'm going to talk about System.ComponentModel.Component.
You know, I understand, that the .NET Component Model provides ability (through Site Services) to define ...
3
votes
3answers
3k views
Programatically Hide Field in PropertyGrid
Using
<System.ComponentModel.TypeConverter(GetType(System.ComponentModel.ExpandableObjectConverter))> _
on the declaration of a class (which is a property of another class) that consists of a ...
2
votes
2answers
193 views
Serialize ComponentModel.Container?
Is it possible to serialize (binary) a System.ComponentModel.Container?
1
vote
1answer
58 views
How to disable designer in derived classes in following generations
In order to disable component designer in classes it is simple to add just [System.ComponentModel.DesignerCategory("")] attribute to it, however it does not work for any classes derived from this ...
1
vote
2answers
377 views
Removing REQUIRED Attribute from Class but MVC3 will NOT post the form without a value in the text box… Please HELP!
I have a class. At one point, I had set the properties of the class to [Required] using System.ComponentModel....
Okay, then I realized this was not needed. I have removed the required property ...
1
vote
4answers
3k views
C# show browsable child properties in designer
I'm using .NET C# with standard WinForms, not WPF.
I have this situation.
I'm creating a user control for a month calendar, similar to the .NET one but with a little more functionality.
I have a user ...
1
vote
1answer
356 views
How do I use the service locator implementation in System.ComponentModel for dependency injection in a WinForms application?
I'm trying to allow my business logic components to query for services when they are added to one of my form/control classes. For example, I might have a ClientManager class in my library, which ...
0
votes
2answers
123 views
How to programatically turn on/off a Data Annotation Validation Attribute
So, I am using ASP.NET MVC 3 and Entity Framework 4.1 (code-first).
I have a class like this:
public class Person
{
public int Id { get; set; }
public string Name { get; set; }
...
0
votes
2answers
70 views
Hiding elements and categories for custom controls
I have a question please. Is it possible to hide some of the elements and categories of the base control (for a custom control). I want only the properties I defined to be shown. Thanks for your time.
...
0
votes
3answers
62 views