Tagged Questions
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 components.
12
votes
1answer
714 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 ...
11
votes
5answers
2k views
Data Binding POCO Properties
Are there any data binding frameworks (BCL or otherwise) that allow binding between any two CLR properties that implement INotifyPropertyChanged and INotifyCollectionChanged? It seems to be it should ...
9
votes
1answer
2k views
When and why should I implement IComponent, IContainer, and ISite?
I've wondered for a long time what IComponent, IContainer, and ISite are for. I've read the documentation, but it is extremely vague (or I'm thinking about it too hard). I know that if I create a ...
6
votes
1answer
742 views
How have you used IContainer/ISite/IComponent in your own code?
There are various online docs about using IContainer and ISite (eg http://www.theserverside.net/tt/blogs/showblog.tss?id=pluginArchitectures), and there are vague examples around, but I haven't come ...
5
votes
1answer
1k views
Difference between ISupportInitialize (BeginInit/EndInit) and SuspendLayout/ResumeLayout
Could someone please explain what the difference is between using the ISupportInitialize interface methods (BeginInit/EndInit) and using SuspendLayout/ResumeLayout?
Is ISupportInitialize ONLY used ...
4
votes
2answers
424 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 on purpose, as you will see shortly.
Second, sorry if this question is somewhat long. ...
4
votes
2answers
296 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?
...
4
votes
2answers
2k 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 ...
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 ...
4
votes
1answer
296 views
System.ComponentModel namespace usage
I consider myself a reasonably experienced .NET developer but I have almost never directly used types in the System.ComponentModel namespace. (I've implemented a few custom attributes and consumed ...
3
votes
2answers
833 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 ...
2
votes
1answer
214 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: ...
2
votes
3answers
161 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 ...
1
vote
1answer
51 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
117 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
63 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 ...
1
vote
1answer
178 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 ...
1
vote
1answer
374 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
201 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
...
1
vote
2answers
403 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 ...
1
vote
1answer
324 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:
...
1
vote
1answer
491 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
327 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 ...
1
vote
2answers
150 views
ComponentModel, PropertyGrids and Intefaces in C#
I have a bunch of objects that implement different interfaces, some properties of this interfaces should be showed and edited through a PropertyGrid, but if I specify something like DisplayName, ...
1
vote
1answer
1k views
TypeDescriptor.CreateProperty doesn't add a property
I am trying to add a property to a type using TypeDescriptor.CreateProperty in order to display an additional property in a property grid, however this new property is not added and when I call ...
1
vote
1answer
84 views
Windows control returns different values when accessed different ways
I have a control, hosted on DesignSurface.
When its Location property is accessed by control.Location, and when it's accessed by propertyDescriptor.GetValue(control), I get different values.
...
0
votes
1answer
42 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 ...
0
votes
0answers
70 views
Winforms bindings not updating because update is being done by another thread
I am using the System.ComponentModel INotifyPropertyChanged to update my windowsform textbox controls. However when I open the form i only get the initial values and the updates don't show.
In the ...
0
votes
1answer
168 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?
0
votes
1answer
131 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 ...
0
votes
2answers
964 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 ...
0
votes
1answer
361 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));
...
0
votes
1answer
65 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
162 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
372 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 ...
0
votes
2answers
71 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?
0
votes
1answer
110 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 ...
0
votes
2answers
652 views
C#: System.ComponentModel.Design does not contain ArrayEditor
I'm working on making a complex object designer compliant and was going to utilize the ArrayEditor component... Needless to say, I don't have it... MSDN says it comes from .NET 1.1 which I most ...