The System.ComponentModel namespace provides classes that are used to implement the run-time and design-time behavior of components and controls. This namespace includes the base classes and interfaces for implementing attributes and type converters, binding to data sources, and licensing ...

learn more… | top users | synonyms

2
votes
1answer
30 views

How do I collapse a Category attribute with System.ComponentModel?

I have a number of categories on my design time component that are being expanded by default. I'd like to have them appear collapsed by default, or at least problematically collapse them before the ...
1
vote
1answer
72 views

Is MarshalByValueComponent still used or useful?

I have been exploring reinventing the DataTable and I am wondering what the uses are for MarshalByValueComponent. I believe it is used for .NET Remoting (maybe WinForms and WebForms), but that was ...
0
votes
1answer
48 views

Impossible to resolve System.ComponentModel.Component (the dll is referred)

i start telling you that my problem could come from the fact i'm very new in .NET programming and for this reason i cant find a similar answer beacause i dont know what to find. I tryed but nothing. ...
0
votes
0answers
30 views

How do I refresh the Properties Window in a Visual Studio extension?

I'm writing a Visual Studio extension that allows editing the properties of an object in the Properties Window. I use the ITrackSelection interface to select the object I want to edit, and it all ...
0
votes
1answer
68 views

Implementing a custom TypeConverter

I have a really simple scenario where I just want to extend the functionality of the System.ComponentModel.BooleanConverter so that it will allow multiple options rather than just true and false. So ...
0
votes
0answers
40 views

Could not find type 'Project_Name.MyTheme' - Only Occurs On Release

Today I created my first VB project with a custom theme. Since then I created a full template which has taken me all day so that I can re-create a few of my other programs with the same theme so I ...
1
vote
1answer
108 views

Get Component's Parent Container in Compact Framework

I basically need to do the same thing as in: Get Component's Parent Form however in compact framework there is no definition of IDesignerHost Any idea how to do this? EDIT: It is ...
3
votes
1answer
101 views

How do I specify the maximum column length of a field using entity framework code first

Is there an attribute I can use when creating a table ? I tried [StringLength] but it seems to be ignored. public class EntityRegister { public int Id { get; set; } [StringLength(450)] ...
3
votes
1answer
146 views

Working with System.ComponentModel

I am having a bit of difficulty in understanding how the Container/Component model interacts with each other in C#. I get how the Component contains a Site object which has information about Container ...
1
vote
0answers
80 views

Design Time Representation

I'm interested in trying to get an item to behave at design time, not sure if I can achieve what I want to achieve. I've constructed a new webpart, a chart. This webpart has a single ChartSettings ...
1
vote
0answers
39 views

Overriding the DefaultValue of a parent's properties

I'm inheriting a Control, with the goal of overriding the value of the DefaultValue attribute of some properties. However, to do this I need to add some boilerplate to create "proxies" to the parent ...
1
vote
2answers
1k views

How to add property-level Attribute to the TypeDescriptor at runtime?

I want to add some custom PropertyGrid-centric Attributes to the object's properties, to provide richer editing, hide some values and group them in categories, because that class I'm working with ...
1
vote
1answer
101 views

System.ComponentModel.IContainer takes 1 sec to declare?

I'm currently using Red Gate's Performance Profiler to optimize an application. I keep running across a declaration generated by VS and always takes around a second to declare. Its being set to null ...
0
votes
1answer
132 views

What AttributeProvider of type IListSource do?

I have a user control that contains this property: [AttributeProvider(typeof(IListSource))] public object DataSource { get { return _grid.DataSource; } set { _grid.DataSource = value; } } How ...
1
vote
1answer
52 views

Override Visual Studio's Treatment of Component-Derived Class

Is there any way to tell Visual Studio that I want to treat my class as a regular class and not a component? My class is declared like this: public class WebDavClient : WebClient { } I guess that, ...
0
votes
0answers
91 views

Metadata attributes not showing up

We've had a really troubling bug show up twice now - once on a dev machine and once on production - where a UIHint attribute applied in a metadata class won't be applied to the MetaColumn for the life ...
0
votes
1answer
284 views

How to properly use Properties.Settings?

I'm using Visual Studio 2010 where I have a project, called Utilities, containing my settings.settings file which I want to access from other projects in the solution. In another project, I want to ...
2
votes
1answer
428 views

C# Using and Compiling Windows.Form

I am working on coding a GUI with C#. I'm following this simple tutorial to get started. To compile, I need to reference System.Windows.Forms.DLL System.Drawing.DLL, so I type csc ...
0
votes
2answers
200 views

Model validation using Entity Framework

I have a Entity Framework model class that has a view to create an instance of that model class. I wanted to validate dates on that class so that users add dates that meet certain criteria. I have a ...
0
votes
1answer
25 views

View argument constructed once

I have the following code as the constructor of a ViewModel class: [ImportingConstructor] public ItemDefViewModel(IItemDefView view) :base(view) { _Item = new ItemModel(); ...
2
votes
2answers
185 views

How to convert string to Color in SharePoint Client Object model for silverlight?

I need to convert a string which has the name of a color (e.g. "Red") to an object of System.Windows.Media.Color. I am using the following code: using System.ComponentModel; TypeConverter tc = new ...
4
votes
1answer
523 views

C#: System.ComponentModel.BindingList: Add(object) vs. AddNew()

What is the difference between the System.ComponentModel.BindingList methods Add(object) and AddNew(). The MSDN documentation says this: Add: Adds an object to the end of the Collection<T>. ...
0
votes
1answer
312 views

Click event delayed in ContextMenu attached to NotifyIcon

I am working on a plugin (using System.ComponentModel.Composition) for an application to place an icon in the notification area of the Windows UI. trayMenu.MenuItems.Clear(); // Create context menu ...
2
votes
1answer
131 views

Is there a Silverlight equivalent of ITypedList?

I have a collection of objects, each of which holds a set of name-value pairs. The names are the same across all objects. I'd like to show these as columns in a data grid. In Winforms/WPF I'd use ...
1
vote
2answers
580 views

How to use a static utility method for property setters in a utility class

I'm trying to achieve two-way binding between a DataGridView and a BindingList that provides data for the DGV. Some columns do not yet reflect changes in the underlying list and I think it's because I ...
1
vote
0answers
174 views

How to subclass System.ComponentModel.GroupDescription?

Can anyone explain how to use the GroupDescription class of the .NET library to implement anything else than (a class like) the PropertyGroupDescription class? In other words: What other kinds of ...
0
votes
1answer
489 views

Most advanced tutorial on custom collection editor

We need to know everything on how to customize the standard .NET collection editor, where shall we look?
1
vote
1answer
318 views

Checking property name at compile time in lambda expression

In a previous question of mine, Linq expressions and extension methods to get property name I asked about data binding between two POCO properties using expressions and extensions. I got a helpful ...
0
votes
1answer
253 views

How IEQuatable<T> affect the behavior of combobox

While working on combo box I found out a wired issue. Xaml looks like this <ComboBox x:Name="cb" ItemsSource="{Binding MyEntity.Choices}" SelectedItem="{Binding ...
2
votes
3answers
3k views

Linq expressions and extension methods to get property name

I was looking at this post that describes a simple way to do databinding between POCO properties: Data Binding POCO Properties One of the comments by Bevan included a simple Binder class that can be ...
2
votes
1answer
470 views

How to dispose of a Forms.Timer on the Compact Framework

On the Compact Framework, the System.Windows.Forms.Timer class doesn't support the system.componentmodel constructor: new Timer() is supported: ...
6
votes
2answers
2k views

.NET: How do I invoke a delegate on a specific thread? (ISynchronizeInvoke, Dispatcher, AsyncOperation, SynchronizationContext, etc.)

Note first of all that this question is not tagged winforms or wpf or anything else GUI-specific. This is intentional, as you will see shortly. Second, sorry if this question is somewhat long. ...
0
votes
1answer
1k views

Understand Component.GetService()

i have a method in a Usercontrol with this code public bool GetActiveDocument(ref EnvDTE.Document doc) { try { var dte = (DTE2)GetService(typeof(SDTE)); ...
2
votes
1answer
2k views

When and why we should to use class System.ComponentModel.Container?

Is anybody could explain when and why we should use System.ComponentModel.Container, please? Recently I have met using of this class here, but really cannot understand what a benefit can get us this ...
1
vote
1answer
643 views

Trying to start a windows service from a windows application giving System.ComponentModel.Win32Exception: Access is denied

I am trying to develop a windows application to start/stop and monitor status of two particular services. The problem is I am getting System.ComponentModel.Win32Exception: Access is denied ...
7
votes
2answers
2k views

What is AggregateCatalog?

What is AggregateCatalog? What does it mean when you construct a new AggregateCatalog()? What does it mean when you add assemblies to the catalog, eg catalog.Catalogs.Add(new ...
4
votes
2answers
611 views

How to export a type in MEF as if the Export Attribute had been applied to that type?

I would like to dynamically apply the MEF Export attribute to a type at run-time, exactly as if the type had had an Export attribute applied at compile time. Is there a simple way to do this? ...
1
vote
2answers
1k views

Enumerate Form Controls

I have this C# code to enumerate controls of a Form instance: private void button1_Click(object sender, EventArgs e) { textBox1.Text = ""; Form2 form2 = new Form2(); foreach (Control ...
2
votes
1answer
512 views

Inherited Control Visible/Enabled Property Value Always True: PropertyGrid

I have created a custom WinForms hosting environment. Which has a toolbox and a PropertyGrid. The controls displayed in the Toolbox are inherited from existing WinForm controls. DropDownList Source: ...
0
votes
1answer
95 views

What is “System.ComponentModel.Design.DateTimeEditor+DateTimeUI”?

Greetings, doing research into outside code I got this control returning { Name = "DateTimeUI" FullName = "System.ComponentModel.Design.DateTimeEditor+DateTimeUI" } to Type.GetType(). I've ...
0
votes
1answer
252 views

Overridding ComponentModel attributes (ie, DisplayName) doesn't work as expected

I have two classes: public class DocumentViewModel { public virtual string DocumentNumber { get; set; } } public class PurchaseOrderViewModel : DocumentViewModel { [DisplayName("PO Number")] ...
0
votes
1answer
634 views

Using System.ComponentModel.DisplayName with dynamic values?

Im trying to implement multi-language support in my system, the other systems at work uses xmlfiles for this generated from a database that they have used for some time now so they want me to use ...
1
vote
1answer
1k views

Could not find Assembly System.ComponentModel

I'm using Silverlight 4. I need to do grouping in my DataGrid. So i need to add add reference to System.ComponentModel. I could not find System.ComponentModel in "Add Reference". I added reference to ...
1
vote
3answers
628 views

Updating WPF GUI from a DLL

This seems like it would be pretty common task, but I'm not having any luck searching for an answer. I have a WPF/C# application that relies heavily on a dll for database routines. I would like the ...
0
votes
2answers
144 views

Which attribute to use in System.ComponentModel namespace for setting order of fields?

By default, the fields in the designer are listed in alphabetical order. Does anyone know which attribute to use in the System.ComponentModel namespace to set the order explicitly?
2
votes
3answers
347 views

Recreating “Font” Property Behavior

Controls that inherit off of System.Web.UI.WebControls.WebControl have a property called Font. The type is System.Web.Ui.WebControls.FontInfo. When working with these controls in the designer, it ...
15
votes
1answer
2k 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
3answers
3k views

MEF and unit testing with NUnit

A few weeks ago I jumped on the MEF (ComponentModel) bandwagon, and am now using it for a lot of my plugins and also shared libraries. Overall, it's been great aside from the frequent mistakes on my ...
0
votes
1answer
176 views

How does the Control class, provide the ForeColor, BackColor and Font default values?

I know that component-model indicates whether a property has a default value or not, by means of ShouldSerializeValue method of PropertyDescriptor. The base windows-forms Control class, has some ...
4
votes
2answers
862 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 ...

1 2