473,508 Members | 2,281 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Properties window - accessing collections

I have created a user control that includes the following field:
[Browsable(true)]
protected TreeColumn[] columns = new TreeColumn[3];

This is accessed via an accessor as follows:
pubilc TreeColumn[] Columns
{
get { return columns; }
set { columns = value; }
}

Now, at design time, I can see the "Columns" property in the property editor
and I can expand it to show three items. However, I want to be able to
change the values of these three columns, but VS has made them read only, so
will not let me make any changes.

Any suggestions as to how I get access to the public properties of the
TreeColum class?

On a second point, I get a button I can click that opens the collection
editor. This gives me add and remove buttons that are not helpful. I need my
array fixed at 3 items. Pressing the add button causes an error message -
can I either suppress the collection editor or can I remove these buttons?

Thanks
Steve
Mar 23 '06 #1
6 3698
Hi.
Use class inherited from ExpandableObjectConverter and its CanConvertTo and
CanConvertFrom methods for editing or displaying the items of your array. You
can find detailed info in MSDN.
The second question is still opened even for me. I do not know how to
disable/suppress collection editor button in the property grid too. Does
anybody know?
Thanks.
Apr 12 '06 #2
You will have to write a custom editor for you're spefic attributes and
specy that UIEditor in the attributes of the item. This will then display
you're own editor -- without using the default Collections editor -- hence
no button.

Jamie
"Brko" <Br**@discussions.microsoft.com> wrote in message
news:E1**********************************@microsof t.com...
Hi.
Use class inherited from ExpandableObjectConverter and its CanConvertTo
and
CanConvertFrom methods for editing or displaying the items of your array.
You
can find detailed info in MSDN.
The second question is still opened even for me. I do not know how to
disable/suppress collection editor button in the property grid too. Does
anybody know?
Thanks.

Apr 12 '06 #3
Hi. Thanks. I found this solution too. But when I created my own UIEditor it
didn't work for the property of the List<MyClass> type. May be List<> generic
defines its own CollectionEditor. I tryied to create my own editor for other
types and it worked. Does anybody know how to change UIEditor for the List<>
generic?
Thanks once more time.
B.
Apr 13 '06 #4
Here's s simple one I use -- this works OK, the dialog tha tthis code is
showing is just a simple 2 column datagrid view with key value pairs -- it
seems similar to what you are trying to do.

class CostEditor : UITypeEditor
{
private IWindowsFormsEditorService editorService = null;

public override UITypeEditorEditStyle
GetEditStyle(System.ComponentModel.ITypeDescriptor Context context)
{
return UITypeEditorEditStyle.Modal;
}

public override object EditValue(
ITypeDescriptorContext context,
IServiceProvider provider,
object value)
{
if (provider != null)
{
editorService =
provider.GetService(
typeof(IWindowsFormsEditorService))
as IWindowsFormsEditorService;
}

if (editorService != null)
{
Prices frm = new Prices((Dictionary<string, decimal>)value);
frm.ShowDialog();
if (frm.DialogResult == DialogResult.OK) return value;
}

return null;

}

Then where you define the Property you need the following

[Description("This indicate whether this is a menu that is
called on start of a POS device."),
Category("Prices"),
Editor(typeof(CostEditor), typeof(UITypeEditor))]
/// <Summary>
/// Returns the prices for all plans that apply to this item
/// </Summary>
public Dictionary<string, decimal> Prices
{
get { return _Prices; }
}

This way still presents the button to display the editor, but it displays my
grid not the default collection editor. My DataGridView is disabled for
editing, but if you allow editing and define the set in the property, and
also define the attribute [ReadOnly(False)] this will allow you to edit
you're values in you;re own dialog.

Hope this helps

Jamie
"Brko" <Br**@discussions.microsoft.com> wrote in message
news:B6**********************************@microsof t.com...
Hi. Thanks. I found this solution too. But when I created my own UIEditor
it
didn't work for the property of the List<MyClass> type. May be List<>
generic
defines its own CollectionEditor. I tryied to create my own editor for
other
types and it worked. Does anybody know how to change UIEditor for the
List<>
generic?
Thanks once more time.
B.

Apr 13 '06 #5
Now you opened my eyes. The problem of my code is that, I didn't inherit my
editor class directly from UITypeEditor but from CollectionEditor class which
is ancestor of UITypeEditor. I just wanted to suppress displaying the edit
button in the PropertyGrid for some conditions. But it seem to be impossible
to inherit correctly the new class from the CollectionEditor class. When I
put the breakpoint into the constructor of the class inherited of
CollectionEditor the programm doesn't stop there. Probably my editor is not
created even I specified the EditorAttribute correctly for my property.

This is non-properly working code:
public class iSTConfigVar
{
public string name = string.Empty;
public string value = string.Empty;
}

public class BLVarsEditor : CollectionEditor
{
public BLVarsEditor()
: base(typeof(List<iSTConfigVar>))
{
}

public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext
context)
{
return UITypeEditorEditStyle.None;
//return base.GetEditStyle(context);
}
}

private List<iSTConfigVar> tralala = new List<iSTConfigVar>();

[EditorAttribute(typeof(BLVarsEditor), typeof(CollectionEditor))]
public List<iSTConfigVar> TestListGenericValue
{
get
{
return tralala;
}
set
{
tralala = value;
}
}
This is working code:
public class iSTConfigVar
{
public string name = string.Empty;
public string value = string.Empty;
}

public class BLVarsEditor : UITypeEditor
{
public BLVarsEditor()
{
}

public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext
context)
{
return UITypeEditorEditStyle.None;
//return base.GetEditStyle(context);
}
}

private List<iSTConfigVar> tralala = new List<iSTConfigVar>();

[EditorAttribute(typeof(BLVarsEditor), typeof(UITypeEditor))]
public List<iSTConfigVar> TestListGenericValue
{
get
{
return tralala;
}
set
{
tralala = value;
}
}

The only difference is, the first editor is inherited directly from
UITypeEditor and the second is inherited from CollectionEditor.

Thanks for any help.
B.
Apr 13 '06 #6
I forgot to write question. Does anybody know if it is possible inherit class
from the CollectionEditor and change the behavior of newly inherited class?
Thanks.
B.
Apr 13 '06 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
2743
by: Guy | last post by:
Guys Hope someone can help me! I'm having real problems getting properties I type against a control I have written at design time I have written a control by inheriting from the Button control....
3
5768
by: Ryan Steckler | last post by:
I found this behavior while trying to implement a singleton class. Below is a somewhat more straight forward example, though admittedly less useful in real life. The basic problem is that when a...
3
1902
by: Andre Boeder | last post by:
In one of my test classes there is a code fragment like this: protected System.Collections.Hashtable pData; public System.Collections.Hashtable PData { get { //TODO: read PData from DB...
2
1212
by: chauncy | last post by:
Hi, I have a databound dropdown filled with data. The text value is a file path that I want to use to open that file in a new browser window. I can do this with a html dropdown because I can...
2
1695
by: Vivek Sharma | last post by:
Hi There, I have a situation where I wish to load the controls dynamically on the basis of user role. Hence, I am using this code. if (UserRole == "IS Administrator") { Control UC1 =...
5
1568
by: Simon | last post by:
Hi all, We have an ASP.NET 1.1 application running on IIS6 on Server 2003. Most of the base objects we are using in this application are taken from a windows application also written by us. We...
6
3425
by: Steve Barnett | last post by:
I have created a user control that includes the following field: protected TreeColumn columns = new TreeColumn; This is accessed via an accessor as follows: pubilc TreeColumn Columns { get {...
14
18254
by: Aaron Gray | last post by:
Hi, I want to access the properties of an IFrame but seem unable to get access to the IFrames document body. <html> <body> <iframe src="test.html" id="IFrame"></iframe> </body>
4
1731
by: Shak | last post by:
Hi My code looks like the follwing: namespace A.B.C { .... private void foo() { A.B.C.Properties.Settings.Default.Save();
3
2798
by: Alex | last post by:
Hi all, I'm trying to create an arraylist of a user control class... I'm able to define the list and add objects (panels) to it, but I can access and of the panel properties using an index... ...
0
7225
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7123
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7324
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
1
7042
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7495
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
4707
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3181
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
766
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
418
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.