all groups > dotnet framework > january 2007 >
You're in the

dotnet framework

group:

.NET property names and translation


Re: .NET property names and translation VisualHint
1/31/2007 7:56:24 AM
dotnet framework:
Hello John,

no the property names won't be translated automatically. You will have
to derive a new attribute from DisplayNameAttribute so that it can
look into resources for example or create your own TypeDescriptor.
There is a CodeProject article on that. Go to the Microsoft
PropertyGrid Resource List and click the "localization" tag.

Best regards,

Nicolas Cadilhac @ VisualHint (http://www.visualhint.com)
Home of Smart PropertyGrid for .Net and MFC
Microsoft PropertyGrid Resource List - http://
www.propertygridresourcelist.com

[quoted text, click to view]

.NET property names and translation John Allen
1/31/2007 9:30:51 AM
Hi there,

Does anyone know if the standard "PropertyGrid" control is (foreign)
language sensitive. If I display an object in the control, and my object has
the native .NET "Size" struct as a property (which also contains its own
""Width" and "Height" members), will someone running my app on a German
version of Windows for instance still see "Size", "Width" and "Height" in
the property window. Or does it get translated into German accordingly. If
not then how would I translate it. Thanks.

Re: .NET property names and translation John Allen
1/31/2007 11:32:42 AM
[quoted text, click to view]

Ok, thanks very much.

Re: .NET property names and translation Stoitcho Goutsev (100)
1/31/2007 12:55:48 PM
John,

This can be definitely done. There are two things you need to localize -
property names and category names.
The category are easy to localize. Just inherit your own class from the
CategoryAttribute and override its GetLocalizedString virtual method. This
method is called by the Category property first time the property is read.
Here you need to return your localized version of the category name.

With the property names it is not that easy. The property grid uses
PropertyDescriptor objects to display and manipulate object proeprties. For
the property name it reads the DisplayName property of the
PropertyDescriptor. DisplayName is virtual, but read only so it can be only
override to return localized version of the property name. I believe you can
create your own PropertyDescriptor class that iherits from the
PropertyDescriptor and overrides DisplayName p then you can create
TypeConverter the return colleciton of this special property descritors for
the class properties upon calling GetProperties method.
You can also implement a ICustomTypeDescriptor interface

Actually I looked around on the net and I found pretty good article for you
with a sample code

http://www.codeproject.com/cs/miscctrl/gpg_revisited.asp

HTH

--
Stoitcho Goutsev (100)

[quoted text, click to view]

Re: .NET property names and translation John Allen
1/31/2007 1:34:39 PM
[quoted text, click to view]

Thanks very much. Somone else also referred me to a "codeproject" article
but I haven't located it yet (I assume it's the same as yours). I will look
into it. As for the other info, I've also been looking into that for several
days now and am finally getting my head wrapped around the details (though
I'll be relying on the "TypeDescriptionProvider" attribute instead of
inheriting from "ICustomTypeDescriptor" directly). Customizing a
"PropertyGrid" is no easy task needless to say. I was hoping at the very
least that the native .NET properties would be automatically translated
(where appropriate) but that was wishful thinking. In any case, on a
separate issue, do you know off-hand if it's possible to change the
font/color of an individual "PropertyGrid" row. I don't believe so based on
my research (without a lot of pain) but I'm hoping someone knows better.
Anyway, thanks again.

Re: .NET property names and translation Stoitcho Goutsev (100)
1/31/2007 2:52:12 PM
John,

I don't want to disapoint, but I don't think you can change the font or
color of individual rows.
As far as TypeDescriptionProvider goes just keep in mind that it is not
supported by pre 2.0 versions of the framework (I believe you already know
that)


--
Stoitcho Goutsev (100)


[quoted text, click to view]

Re: .NET property names and translation John Allen
1/31/2007 3:29:36 PM
[quoted text, click to view]

I didn't think so and it's quite surprising to me actually.

[quoted text, click to view]

Yes, I'm aware of that. My app is targetting 2.0 and later so it's not an
issue. Anyway, thanks again. You've been very helpful.

Re: .NET property names and translation VisualHint
1/31/2007 5:03:58 PM
Hello John,

I think you have now 2 different codeproject articles to solve your
issue ;)

Concerning the colors, the MSPG won't do it but Smart PropertyGrid
will. Almost every visual aspect is customizable.

Best regards,

Nicolas Cadilhac @ VisualHint (http://www.visualhint.com)
Home of Smart PropertyGrid for .Net and MFC
Microsoft PropertyGrid Resource List - http://
www.propertygridresourcelist.com


[quoted text, click to view]

Re: .NET property names and translation John Allen
2/1/2007 7:51:21 AM
[quoted text, click to view]

Shameless plug :) but I'll check it out anyway (thanks)

AddThis Social Bookmark Button