Normally I'd just create a graphic for the whole string, but this will
be translated in multiple languages and I want to keep the images
generic and only translate text.
> Is there a common way to embed a graphic or icon into a label?
> Normally I'd just create a graphic for the whole string, but this will
> be translated in multiple languages and I want to keep the images
> generic and only translate text.
You definitely can't do it with a simple label. You could do it with
custom drawing in a Paint event, but you'd have to consider things like
word wrap.
You could also ensure the image falls outside the label, e.g. "To
continue, click: <separate image here>". I suppose every language has a
way of stating this sentence so that the image comes last, but you never
know.
The general recommendation is to keep images totally separate from text
for localisation purposes.
Eq.
Hi,
There is no such a control in the framework, imagine, what if instead
of one you want two images?, or how to indicate the position of the
images?
But it's not difficult to implement, you could create a control that
is compose of two labels and one PictureBox
Thank you both for the comments. It looks like I'll need to create a
Label-Image-Label control for myself.
The icons/images that I need to display are all very simple. I'm also
considering creating a custom font character for each icon, but I
suppose that will be difficult to color properly as fonts are all
single colored, and there is no way to color individual characters
within a single label (or is there?).
Thanks,
dave
"raiderdav" <raid...@gmail.com> wrote in message
news:d8c41e8e-abaa-4223...@p25g2000pri.googlegroups.com...
Haha - thanks for the tip. Actually, some HTML style tags would be
handy for this.
If I make it an image button, then when it is translated to different
languages I need to have a different image for spanish, french,
german, etc, and call the appropriate image based on the language in
use. This is for a handheld device (Compact Framework) so I need to
minimize the number of images and file sizes.
Hi,
Good point, OP: is this a web or a win problem?
It's a win problem - WinCE to be exact. Not a web app.
I'm just getting into WPF. It supports several new ways to bind properties
to attributes and more dynamic ways to generate the context of the "page" at
runtime.
[1] http://msdn.microsoft.com/en-us/library/d5bd1tad.aspx
[2] ToolTip='<%# "RSS Channel Builder "
+ Eval("Title")
+ " Element Is Selected"%>'
runat="server" />
[3] ToolTip='<%# (Eval("Title") == "Finish Channel")
? "Finish using the RSS Channel Builder"
: "RSS Channel "
+ Eval("Title")
+ " Element" %>'
[4] Text='<%# DataBinder.Eval(Container, "DataItem.Name")%>'
"raiderdav" <raid...@gmail.com> wrote in message
news:d545b543-1f6c-473f...@q27g2000prf.googlegroups.com...
"raiderdav" <raid...@gmail.com> wrote in message
news:5d96dd1a-dcfb-4cc7...@1g2000prg.googlegroups.com...
Hi,
In that case consider do not use an image in the first place, unless
it really is needed in your app. In any case you will need to create
it yourself. Nothing complex though, just two labels and a PictureBox
Too complex, just use a Label/PictureBox/Label and move on.