Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

21
votes
1answer
4k views

ICustomTypeDescriptor, TypeDescriptionProvider, TypeConverter, and UITypeEditor

I'm trying to get an overall understanding of how you use ICustomTypeDescriptor, TypeDescriptionProvider, TypeConverter, and UITypeEditor to change how a PropertyGrid displays and interfaces with an ...
19
votes
1answer
10k views

How to convert NSMutableData to NSString on iPhone?

I received an NSMutableData from a server and now I want to convert it to an NSString. Any ideas about how to do this?
13
votes
2answers
1k views

C# : How does this work : Unit myUnit = 5;

I just noticed that you can do this in C#: Unit myUnit = 5; instead of having to do this: Unit myUnit = new Unit(5); Does anyone know how I can achieve this with my own structs? I had a look at ...
8
votes
4answers
732 views

Are implicit operators and TypeConverters equivalent?

It seems to me its very easy to implement an implicit operator versus a TypeConverter, so I'm assuming they aren't equivalent because of the prevalence of TypeConverters in the framework (see anything ...
6
votes
2answers
5k views

C#: How to use a Type Converter to localize enums

I'm trying to understand how to use Type Converters after reading this answer to one of my other questions. But I'm not sure if I quite get it... In my particular case I would like to "convert" an ...
6
votes
8answers
2k views

Passing int list as a parameter to a web user control

I want to pass an int list (List) as a declarative property to a web user control like this: <UC:MyControl runat="server" ModuleIds="1,2,3" /> I created a TypeConverter to do this: public ...
4
votes
2answers
221 views

Why won't Silverlight handle the conversion of my custom float property

In a Silverlight 4 project I have a class that extends Canvas: public class AppendageCanvas : Canvas { public float Friction { get; set; } public float Restitution { get; set; } ...
4
votes
1answer
4k views

How does one databind a custom type to TextBox.Text?

I have a custom c# type like (just an example): public class MyVector { public double X {get; set;} public double Y {get; set;} public double Z {get; set;} //... } And I want it to ...
4
votes
6answers
12k views

Converting to int16, int32, int64 - how do you know which one to choose?

I often have to convert a retreived value (usually as a string) - and then convert it to an int. But in C# (.Net) you have to choose either int16, int32 or int64 - how do you know which one to choose ...
3
votes
4answers
137 views

Enumeration to boolean casting question

I have the following enumeration: public enum MyEnum { MyTrue, MyFalse } And I'd like to eventually be able to automatically convert my enumeration to a boolean value, with a simple line ...
3
votes
1answer
585 views

Using textbox value as parameter in LINQ dat source/gridview : A value of type 'String' cannot be converted to type 'Double'

it's a New Year but you're still left with a thick Mr Dean!! Ok, the scenario - I have a textbox, a two radio buttons, a button and a gridview. <code> <body> <form id="form1" ...
3
votes
1answer
592 views

system.convert to custom object

we have a custom datatype object "Money" which is used to represent money values in our application. at the moment we are trying to implement some custom formatting within a grid component however the ...
3
votes
3answers
4k views

Bind Any XML document to WPF TreeView

I would like to bind any XML document to WPF TreeView using TypeConverter. My original solution was to use recursion, but when document is large UI is heavily tied up. Following link talks about ...
2
votes
4answers
59 views

Classes, encapsulation and user input [closed]

What's the right way to send user input to a class? Foo class: <?php class Foo { private $_bar; private setBar($bar) { $this->_bar = $bar; } } ?> Using foo ...
2
votes
2answers
111 views

How to create correct InstanceDescriptor for intializing some properties

Lets say I have a class like this: public class Foo { public Foo {} public int Titi { get; set; } public int Toto { get; set; } public int Tata { get; set; } } I can initialize a ...
2
votes
4answers
216 views

Can I override ToString() for classes in a public API?

I'm writing a tool that interfaces with an API for another piece of software. Part of my tool will need to generate reports about the various objects found through the API, and I want these reports to ...
2
votes
1answer
299 views

WPF Binding Converter for Collection

I have a WPF treeview used to display a file structure. Each treeitem has a collection of enums to determine custom status' of the item. I.E. ObservableCollection<enumType> statusCollection; I ...
2
votes
3answers
339 views

StringConverter GetStandardValueCollection

I am trying to use property grid for displaying data. I have to write StringConverters for my predefined string constants so that they can be shown on a combo box. Consider a list of colors and ...
2
votes
2answers
711 views

Can you assign a TypeConverter without a TypeConverterAttribute?

Dependency requirements are forcing me to have a class and its TypeConverter in different assemblies. Is there a way to assign a TypeConverter to a class without using a TypeConverterAttribute, and ...
2
votes
4answers
928 views

C - Convert long int to signed hex string

MASSIVE EDIT: I have a long int variable that I need to convert to a signed 24bit hexadecimal string without the "0x" at the start. The string must be 6 characters followed by a string terminator ...
2
votes
1answer
325 views

Insert custom TypeConverter on a property at runtime, from inside a custom UITypeEditor

I've created a custom UITypeEditor. Can I possibly insert an attribute that also attaches a TypeConverter to my property from inside the UITypeEditor class? I've tried the following, but nothing ...
2
votes
2answers
521 views

Copy Paste is Disabled in Property Grid

I have a FileNameEditor inside a property grid, which has a few entries like Main File : "C:\blah1" Sec File: "C:\blah2" and so on. My problem is that I cannot copy and paste from one property ...
2
votes
2answers
303 views

.Net: Is there a built-in TypeConverter or UITypeEditor to edit lists of strings

I wish to know if .Net-3.5 comes with a built-in List<string> or string[] TypeConverter or UITypeEditor so that I can edit this kind of property from a property grid.
2
votes
1answer
516 views

Extend a TypeConverter

The DateTimeConverter class provides conversions between DateTime and string. I would also like to support conversions between DateTime and double. According to MSDN I can extend the ...
1
vote
2answers
49 views

spring 3.0 Custom generic converter not found though registered.Error: no matching editors or conversion strategy found

I have created a StringToMapConverter for converting string in predefined format to a Map of key-value pairs.The key can be Enum type also. However in the converter I required the reference to ...
1
vote
2answers
86 views

Spring converter to convert null to empty collection

I have a spring mvc 3.0 Web application. I am using Spring Converters (no PropertyEditors) to convert id's (String) to Domain Entities. This even works for collections out of the box without any ...
1
vote
1answer
218 views

How to get old value in PropertyGrid TypeConversion?

I have a special case of property grid input where I would need to enter a Vector3 under a string format, let's say "0, 5, 1". I built the converter for it as such: public class Vector3Converter : ...
1
vote
0answers
145 views

What are the compatibility requirements for a property type when used with the ConfigurationProperty attribute?

I would like to serialize and deserialize a System.Version object as part of my application's custom configuration section and I am attempting to do so with the following property declaration: public ...
1
vote
1answer
128 views

Is it possible to override the type descriptor for an existing .net type?

Or more specifically 1) Can I assign a type descriptor to a property 2) If so, what's the best way of getting the type converter at runtime. Basically I have configuration objects that are ...
1
vote
1answer
318 views

Custom TypeConverter with variable StandardValues

I have a datagridview with info about competitors. I display each copmetitor's properties in PropertyGrid. I want some of those properties (e.g. Degree, City, Institute) to be dropboxes with values ...
1
vote
2answers
200 views

AutoComplete for property grid field

I've a class which I set as source object to a property grid. The values are coming from a value list: class Person { ... [TypeConverter(NationalityStringConverter)] public string ...
1
vote
0answers
75 views

How can I save the values entered at design time for a complex property?

I'm still learning the ropes when it comes to implementing custom editors for complex properties at design time. As a simple starting point, I'm trying to enable design-time editing of a property of ...
1
vote
2answers
121 views

Getting the converter for the type

In the MSDN I've read this about EnumConverter: You should never create an instance of an EnumConverter. Instead, call the GetConverter method of the TypeDescriptor class. For more information, ...
1
vote
1answer
90 views

how to convert int to NSTimeInteravl in Objective-C?

Please do tel me how to convert int to NSTimeInterval? Thank You.
1
vote
0answers
246 views

How to define TypeConverter for enumeration drop down in Propertygrid in Visual C++ Winforms?

I would like to create a drop-down in a propertygrid in Visual C++ where I define text for each item of an enumeration. I cannot seem to find any help for this anywhere - all the help seems to be ...
1
vote
1answer
419 views

Winforms data binding: Can a TypeConverter be used instead of the Format/Parse events?

In a Winforms form, I want to provide visual cues to the user when an input field contains an invalid value. To that end, I want to bind the ForeColor property of a input field's label to the ...
1
vote
1answer
291 views

convert from short to byte and viceversa in Java

I'm trying to convert a short into 2 bytes...and then from those 2 bytes try to get the same short value. For that, I've written this code: short oldshort = 700; byte 333= (byte) ...
1
vote
0answers
185 views

TypeConverters on the compact framework

I'm working on a compact framework project and whilst most of the properties are fairly straight forward (I.e. mark them as browsable in the xmta file), I'm struggling to get this to work for more ...
1
vote
1answer
77 views

How do you mark class with TypeConverter that is not in referenced solution?

I have a class that I've written a TypeConverter for. I want to keep the TypeConverter separate from the main solution, as it is only needed at design time and have an extensibility project now that ...
1
vote
2answers
1k views

TypeConverter in propertygrid only converts from string, not to

Only the ConvertTo method gets called(a lot of times) when accessing the propertygrid. This correctly returns the "Foo!" string in the propertygrid. When I click to edit I get an exception Cannot ...
1
vote
2answers
643 views

How to implement a TypeConverter for a type and property I don't own?

This is annoying: <GeometryDrawing> <GeometryDrawing.Pen> <Pen Brush="Black"/> </GeometryDrawing.Pen> </GeometryDrawing> I want this: ...
1
vote
2answers
476 views

TypeConverter when binding to ASP.NET GridView

I am trying to bind an IList of objects to a GridView's DataSource and one of the properties of the object is an enum. I was trying to use a TypeConverter on the enum to use a Description when the ...
1
vote
2answers
93 views

typeconverter from dll

I am using the propertygrid with a class and associated type converter. When I moved the class and the TypeConverter to a dll, it seems that it is not being called. Can't find how to activate the ...
1
vote
1answer
920 views

C# TypeConverter long to enum type fails on ChangeType

I'm fairly new to C# and .NET - I'm trying to get conversion to work from an integer to an enum. The conversion must be performable by ChangeType (outside of my demo below this is fixed as it's ...
1
vote
1answer
948 views

Converting int64 to NSData

I need to convert a long value from int64 to NSData, so I can later run a hash algorithm on it. I perform: int64_t longNumber = 9000000000000000000L; NSMutableData *buffer = [NSMutableData ...
1
vote
2answers
2k views

Why is my TypeConverter not called?

I've applied a TypeConverterAttribute attribute to a property on my WPF FrameworkElement subclass. The property is of type BitmapSource. But the TypeConverter is never created or called. Is this ...
0
votes
1answer
36 views

AutoMapper TypeConverter mapping nullable type to not-nullable type

I'm using AutoMapper, and I've registered a TypeConverter to map nullable long values to long values like so: public class NullableLongToLongConverter : TypeConverter<long?, long> { ...
0
votes
0answers
22 views

No transition with converter when selectManyMenu

I am working with Spring Webflow (2.3), and I am having some trouble with the converter and the Flow transition. What I need is a JSF selectManyMenu which take a List of BuisnessObject for value and ...
0
votes
0answers
43 views

WPF Property-specific TypeConverter being ignored

I have the following class (extract) and XAML implementations thereof. The first XAML implementation causes an error: Error 342 Unexpected token 'Circle' at position '0'. Line 67 Position 3. ...
0
votes
0answers
24 views

Getting Type from String

I have the following piece of code which tries to retrieve a given type from a custom section in the application's App.Config file: public sealed class CustomElementElement : ConfigurationElement { ...

1 2