M
Manfred
My problem based on a multilingual interface.
I display the Properties in a PropertyGrid - no proplem at all.
I have properties defined like this one:
[System.ComponentModel.Browsable(true),
System.ComponentModel.Description("Type your Path"),
System.ComponentModel.Category("Pathstructure")]
public string WebImagePath
{
get
{
return sWebImagePath;
}
set
{
sWebImagePath = value;
}
}
now - I need to translate the Description to different Languages - how
can I do this with the ResourceManager in this case?
Thanks for any suggestions.
Manfred
I display the Properties in a PropertyGrid - no proplem at all.
I have properties defined like this one:
[System.ComponentModel.Browsable(true),
System.ComponentModel.Description("Type your Path"),
System.ComponentModel.Category("Pathstructure")]
public string WebImagePath
{
get
{
return sWebImagePath;
}
set
{
sWebImagePath = value;
}
}
now - I need to translate the Description to different Languages - how
can I do this with the ResourceManager in this case?
Thanks for any suggestions.
Manfred