0
votes
3answers
50 views
wpf textblock autosize/layout in stackpanel
I have the following stack panel
<StackPanel>
<TextBlock Text="{Binding AddressLine1}" />
<TextBlock Text="{Binding AddressLine2}" />
<TextBlock …
0
votes
2answers
38 views
WPF resizing TextBlock
I have a textblock in a grid in WPF.
I want the text to dynamically size (font) when resized. At the moment textboxes, comboboxes do this, but the the textblock stays the same. Is it possible?
0
votes
1answer
80 views
Silverlight UI Automation of a TextBlock
I'm trying to set up UI automation for Silverlight 3. I have a little test project that has 2 elements, a Button and a TextBlock. When you click the button the text is supposed to change.
I have …
0
votes
1answer
47 views
WPF/XAML: how to make all text upper case / capital?
hi, here's my problem:
I want all texts in TextBlock, Label, MenuItem.Header to be displayed in upper case.
The strings are taken from a ResourceDictionary e.g.:
<TextBlock …
0
votes
1answer
34 views
WPF - How do I default the Visibility of a databound Textblock?
Hi
This Textblock, defined below, shows when the window first loads because it has no Datacontext (and hence the converter code is not run) until an item has been selected from another control e.g. …
0
votes
3answers
262 views
What the best way to get paragraphs in a WPF textblock? (newline chars?)
Hi,
I have some text which has "\r\n" newline markers. I would like to have the newlines in a WPF textblock. I've tried replacing "\r\n" with "& # 13;" (without the spaces), which worked when I …
1
vote
1answer
115 views
How do I bold portions of a bound TextBlock?
I have a TextBlock bound to a property. However, I'd like to bold certain words within the text. What is the easiest way to do this? FYI, I'm new to WPF.
0
votes
1answer
225 views
Programmatically replace GridView cell contents on load
I am working on a program in WPF for the first time. I have a ListView in GridView mode displaying data from a bound dataset (which is grabbed from a database).
In my database, "date of birth" is not …
2
votes
2answers
267 views
Text vertical alignment in WPF TextBlock
How to make vertical center alignment to the text inside a TextBlock? I found TextAlignment property. But it is for horizontal text alignment. How to do it for vertical text alignment.
0
votes
0answers
73 views
Why is text being truncated in this Silverlight TextBlock?
I have a TextBlock with wrapping enabled and while the text is wrapping, it is being wrapped in such a way that some text is truncated. The TextBlock is defined as
<TextBlock
…
0
votes
2answers
58 views
Problem with ItemTemplate TextBlock
Hi,
i am trying to make an item template where some of the field in my stack panel can be empty. When it's empty, I would like to set the visiblility to collapsed. I tried putting triggers but it …
4
votes
3answers
276 views
WPF TextBlock Padding is cutting off text
I have a TextBlock in a Grid with its Padding attribute set to 5. Sometimes the last character is cut off, depending on what string the Text property is set to.
<UserControl
…
2
votes
2answers
162 views
WPF TextBlock: How to evenly space displayed characters?
Hi All,
I need to display a string with each character displayed every x pixels. (x is accross the whole string).
e.g.: "Hello" -> H at position (pixel) 0, e at position 50, l at 100, l at 150, o …
0
votes
0answers
108 views
Determining How Silverlight 3 TextBlock Wraps Text
I working on a Silverlight app that includes an screen emulator for a handheld device. The idea is that a user can attempt to format text that will display on the device, and see how it will look on …
0
votes
3answers
55 views
ValidationRule - validate on property update
Greetings,
how can I validate if value in TextBlock is ok?
I have a TextBox where I bind "Amount" property and a TextBlock which uses Multibinding: Price Property and Amount property. I would like to …
