Tagged Questions
The textblock tag has no wiki summary.
37
votes
7answers
11k views
Any way to make a WPF textblock selectable?
I want to make the text displayed in the Witty, an open source Twitter client, selectable. It is currently displayed using a custom textblock. I need to use a TextBlock because I'm working with the ...
26
votes
9answers
15k 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.
16
votes
4answers
1k views
Get Displayed Text from TextBlock
I have a simple TextBlock defined like this
<StackPanel>
<Border Width="106"
Height="25"
Margin="6"
BorderBrush="Black"
...
13
votes
1answer
2k views
How can I determine if my TextBlock text is being trimmed?
The following textblock wraps and trims as expected. The elipsis "..." is displayed when the text is trimmed.
<TextBlock
MaxWidth="60"
MaxHeight="60"
Text="This is some long text ...
10
votes
5answers
8k views
WPF Textblock, linebreak in Text attribute
Is there a way to have \n make a linebreak in a TextBLock?
<TextBlock Text="line1\nLine2" />
Or is there a better way to force a middle line break, inside the Text="" attribute?
...
8
votes
1answer
671 views
WPF TextBlock Color for each Character
how to get each character of a textblock of different color in wpf?
8
votes
2answers
3k views
C# WPF - ScrollViewer + TextBlock troubles
I have a TextBlock within a ScrollViewer that aligns with stretch to its window. I need the TextBlock to behave as the following:
Resizes with window, no scrollbars
When resized below a certain ...
8
votes
4answers
3k views
Data binding the TextBlock.Inlines
My WPF App receives a stream of messages from a backend service that I need to display in the UI. These messages vary widely and I want to have different visual layout (string formats, colors, Fonts, ...
7
votes
1answer
1k views
How to data bind multiple values to a single TextBlock.Text in WP7?
How can I bind 2 properties to a single TextBlock.Text (eg. first name and last name or current value and max value)?
something like:
// IValueConverter
public object Convert( .... )
{
return ...
7
votes
3answers
1k views
WPF — it's gotta be easier than I'm making it
I'm having the darndest time figuring this out: say I've got two Button and three TextBlocks. I want either button to trigger a simple Storyboard on ALL TextBlocks. Currently I'm trying to define a ...
6
votes
3answers
2k views
Is this slow WPF TextBlock performance expected?
I am doing some benchmarking to determine if I can use WPF for a new product. However, early performance results are disappointing. I made a quick app that uses data binding to display a bunch of ...
6
votes
3answers
2k 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
...
6
votes
2answers
4k views
How to display simple HTML in a Silverlight textblock?
I've got a source of data that has HTML tags in it (B, I, A) and need to display this in a Silverlight ListBox.
Searching around it seems to be an issue but most of the posts are old and have to do ...
5
votes
2answers
2k views
How to make the text bold of TextBlock in Silverlight?
I am developing window phone 7 application in C#. I am new to the window phone 7 application. I am also new to the silverlight. I want to generate the bold text of Texblock dynamically. I want to ...
5
votes
1answer
1k views
TextBlock.TextWrapping - how to make the text wrap so that the lines are center-aligned?
In a Windows Phone 7 application, when I place a TextBlock in the grid and set its HorizontalAlignment to "Center" and its TextWrapping to "Wrap", why does the text that overflows the width of the ...
5
votes
3answers
2k views
WPF TextBlock font resize to fill available space in a Grid
I have some text that is displayed at run time in a textblock. I want
the font size to be the biggest it can be to fill the area that is
given. I think I have the textblock setup correctly to ...
5
votes
4answers
2k views
Align bottoms of text in controls
The following snippet:
<Window x:Class="Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
...
5
votes
1answer
807 views
TextBlock Text property can't be set via style trigger if non-empty - why?
The XAML below does not work (the text does not change when mousing over):
<Window.Resources>
<Style TargetType="TextBlock">
<Style.Triggers>
<Trigger ...
4
votes
5answers
6k views
How to represent Line Break or new line in silerlight textBox
I am having hard time to match Special characters set in Silverlight. I only on the following:
To represent a LineBreak in Silverlight TextBlock:
use : > lineBreak <
But What do I use to ...
4
votes
1answer
1k views
WPF TextBlock.TextTrimming Not Working With Auto-sized ColumnDefinition
I'm using a WPF Grid as the layout of my window. It has two columns and any number of rows. The first column is used specifically for labels and the second column is used for user-input fields (e.g. ...
4
votes
1answer
1k views
Why isn't TextBox.Text in WPF animatable?
Ok, I have just run into something that is really catching me off-guard.
I was helping a fellow developer with a couple of unrelated questions and in his project he was animating text into some ...
4
votes
3answers
3k views
How to get a TextBlock to wrap text inside a DockPanel area?
What do I have to do to get the inner TextBlock below to wrap its text without defining an absolute width?
I've tried Width=Auto, Stretch, TextWrapping, putting it in a StackPanel, nothing seems to ...
4
votes
3answers
6k views
Current Date in Silverlight XAML TextBlock
I am coming from Flex where you can do just about anything inside of curly braces. I am trying to get a TextBlock to display today's Date and Time without just coding it in C#. I have tried many ...
4
votes
4answers
632 views
Setting WPF text to TextBlock
I know that TextBlock can present a FlowDocument, for example:
<TextBlock Name="txtFont">
<Run Foreground="Maroon" FontFamily="Courier New" FontSize="24">Courier New 24</Run>
...
4
votes
2answers
1k views
Vertically aligning Labels and TextBlocks at Top in XAML
How can I vertically align a Label and TextBlock at Top so that their first lines of text line up?
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
...
4
votes
5answers
4k views
Display images in TextBlock (WPF)
I'm working on a simple chat application. Currently the messages are binded to a custom-styled listbox like this (simplified XAML):
<ListBox ItemsSource="{Binding MessageCollection}">
...
4
votes
5answers
2k views
How would I databind a Paragraph to a TextBlock?
How would I take a Paragraph object and databind them to the TextBlock for use in a DataTemplate?
A plain bind does nothing, just a ToString() of the Paragraph object.
The InLines property would let ...
4
votes
1answer
3k views
How Do You Set a Textblock to Autosize to the Width of a TreeView?
I have a TextBlock that I need to autosize to the width of a TreeView. The TreeView and the TextBlock are both contained in a StackPanel. The StackPanel is inside an Expander. The width of the ...
3
votes
1answer
35 views
Text that follows / clips to a shape?
Ok, so I know how to clip text to a particular geometry, however the text doesn't automatically wrap based on the clip so how does one go about achieving an effect similar to the one shown below, ...
3
votes
0answers
74 views
Bug or Feature in TextBlock in Silverlight 4?
I have been having some fun with TextBlock bindings in Silverlight 4.
I have the following situation:
<TextBlock Text="{Binding Date, StringFormat=g}" />
<TextBlock>
<Run ...
3
votes
1answer
85 views
TextBlock brush giving incorrect color
I have a TextBlock and a Rectangle, both sitting in an empty WPF4 window. The TextBlock's Foreground and the Rectangle's Fill are both set to a SolidColorBrush with value #80800000.
This is what it ...
3
votes
5answers
2k views
How to bind a TextBlock to a resource containing formatted text?
I have a TextBlock in my WPF window.
<TextBlock>
Some <Bold>formatted</Bold> text.
</TextBlock>
When it is rendered it looks like this,
Some formatted text.
My ...
3
votes
2answers
692 views
windows phone 7 TextBlock TextWrapping not honored in listbox
I have a listbox defined as :
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
<ListBox x:Name="myListBox" Width="468" ...
3
votes
1answer
2k views
WP7 TextBlock inside a ListBox not wrapping text
I have a ListBox which has StackPanels holding a TextBlock and an Image horizontally, followed by a ContentPresenter. This is what the XAML looks like:
<Grid x:Name="ContentPanel"
...
3
votes
1answer
255 views
Letterspacing (tracking) with TextBlock in WPF?
What is the best way to do letterspacing (tracking) with TextBlock in WPF?
I would think TextBlock.Typography would have taken care of this but it doesn't. What is the best approach?
3
votes
2answers
359 views
Silverlight TextBlock Text Attribute vs Content
When would I use the Text attribute of the <TextBlock> and when should I put my text in the content of the <TextBlock>?
<TextBlock Text="Example Text" />
vs.
...
3
votes
1answer
906 views
Make a silverlight textblock act like a hyperlink
I'm pretty new to silverlight. I have a text block that is displayed inside a datagrid
(inside a DataGridTemplateColumn.CellTemplate template to be precise).
I'd like to dynamically make some of the ...
3
votes
4answers
3k views
Scrolling a TextBlock
Hey everyone,
I have a TextBlock and a Textbox in the same location. Depending on what mode the user is in, I make one visible and the other collapsed. This is working fine, but how can I make the ...
3
votes
3answers
552 views
WPF Textblock Convert Issue
am usina text block in usercontrol, but am sending value to textblock from other form, when i pass some value it viewed in textblock, but i need to convert the number to text. so i used converter in ...
3
votes
2answers
692 views
Styling both Hyperlink and TextBlock with a single style?
I have two types of text that need to follow similar coloring rules based on an enumeration:
public enum Modes
{
A,
B,
C
}
A Style with DataTrigger markup is used to colorize:
...
3
votes
1answer
1k views
WPF: How do I set the Foreground property of a TextBlock using DataTrigger
This is my XAML:
<TextBlock Name="SeverityText"
Grid.Column="1"
Grid.Row="0"
Foreground="Red">
<TextBlock.Triggers>
<DataTrigger ...
3
votes
5answers
762 views
WPF: Binding Visibility by string contents
Ok, so here is my XAML:
<TextBlock Text="{Binding Path=InstanceName}"></TextBlock>
If InstanceName is null or an empty string, I want Visibility="Collapsed". Otherwise I want ...
3
votes
2answers
2k views
Add hyperlink to textblock wpf
Greetings,
I have some text in a db and it is as follows:
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis
tellus nisl, venenatis et pharetra ac, tempor sed sapien. Integer
...
3
votes
2answers
651 views
I'm using a WPF TextBlock but then text gets cut off when it's too long. Is there an AutoScroll feature?
My TextBlock has for example 50x50 pixels to display text, however if there is more text, I want a user to be able to scroll. Is there an autoscroll feature for this control?
Should I use a different ...
3
votes
2answers
1k views
How to get text fit in text block in WPF
I have string which i have to display in TextBlock, my TextBlock have some fixed size, i need display the text in such manner if string cannot fit in TextBlock, then i have to split the string in ...
3
votes
2answers
1k views
Nested TextBlocks and Hyperlinks, How do you replicate this XAML in C#?
I have this XAML:
<TextBlock TextWrapping="Wrap" Foreground="Green"
Text="This is some Green text up front. ">
<TextBlock Foreground="Blue">
This is some Blue text.
...
3
votes
1answer
643 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.
3
votes
2answers
1k views
WPF TextBlock: How to evenly space displayed characters?
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 at 200.
...
3
votes
4answers
204 views
How can I get a TextBlock to literally say “{Binding}”?
In XAML, if you insert
<TextBlock Text="Hello World" />
You will see the words "Hello World".
If you insert
<TextBlock Text="{Binding}" />
it will trigger the data binding ...
3
votes
2answers
2k views
Visible line count of a TextBlock
If you set TextWrapping to "Wrap", a WPF TextBlock can have several lines of text.
Is there a "clean" to get this number of lines of text? I considered looking at the desired height and dividing it by ...