Wpf - Set FontSize Of A Textblock Which Is In A Viewbox?
Jan 15, 2010
I can't set the FontSize of the Text in a TextBlock, since the TextBox is in a Viewbox. Why?
[Code]...
I can set the FontSizes of all of the TextBlocks but not of the TextBlock which is in the Viewbox.
View 2 Replies
ADVERTISEMENT
Mar 1, 2010
I know that in WPF, FontSize = 1/96 of an inch (same as 1 pixel I think). Is the FontSize dimension the height, the width, or diagonal size of a character? I would guess it's the font height, but the Microsoft documentation doesn't really indicate what it is.
Also, is there an easy way to get the height and width of a font size?So it looks like the FontSize is the height, and the width can only be determined (without knowing the actual character) on monospaced fonts since proportional fonts have varying widths.
View 1 Replies
Mar 16, 2012
I've been trying to look for answers on how to do this, for days, but just couldn't find one. Maybe I don't know the keywords to look for. I hope someone can help me with this. Here's my problem. I'm trying to create a wordpad and I have two ComboBoxes (FontName & FontSize) and a RichTextBox. I'm trying to figure out how to get the FontName and FontSize of a SelectedText in the RichTextBox and be selected automatically in each ComboBoxes?
View 2 Replies
Jun 9, 2011
Can't seem to find a way to make the text appearing in Msgboxs to be enlarged.
Tooltips appear to be the same font.
View 7 Replies
May 19, 2012
I have tried the following for changing backcolor and forecolor of each textbox in the form cant cant do the same for changing the font size
Here is my code'[code...]
View 4 Replies
Jan 28, 2011
I have a combobox which I want to use to change the font-size of text, but I'm getting an error.
vb.net Dim xfont As New Font(font_cbo.Text, font_cbo_size.Text, FontStyle.Regular, GraphicsUnit.Point)
Conversion to Type Single is invalid So I tried to convert the string to Single, but with the same error. If I replace the "font_cbo_size.Text" to a number, it'll work fine.
View 9 Replies
Aug 16, 2011
Is it possible to add a tab character into a textblock? It's a textblock in Xaml, but i'm adding the text in code, so it has to be done there. Is there any action like "Environment.NewLine", but for the "Tab" character?
View 2 Replies
Jan 18, 2012
Look at this simple bug :
<textblock (...) Width="0" />
Working great, the textBox appears to be 0px thin. Works with value like, 2, 3, 4...
Now that is NOT working :
<TextBlock (...) />
<TextBlock.Width>
<MultiBinding Converter="{StaticResource WidthConverter}">
[CODE]..................
Why can i set zero value to TextBox.Width in xaml and not in code behind ? By using a converter, when returing 0, the TextBlock.Width is not set to 0 but to "auto", i can read the text
View 1 Replies
Apr 16, 2012
I have a rather large unilingual application that I have to make multilingual, meaning no resource file. I don't have the option of using the culture information but need to do it more on the fly at runtime so that the user can change languages either on startup or menu pick while in the application. I can handle that part ok.
View 2 Replies
Mar 5, 2010
what is the common interface between textblock and textbox when it comes to dela with text stuf?
What I want to do is to create a procedure that accept a textbox or a textblock and change fonts stuff is there a common interface for them that dela with font stuff??
View 13 Replies
Sep 13, 2011
Is there a way to animate a TextBlock's colour change?
At the moment I am basically using the enter/leave events to change the colour and I would like to a almost like a fade (but a fast fade, so .1/.2 secs) to give it a nicer visual appearance instead of being instantaneous.
ps. Due to constraints, the actual code is vb.net but I will accept c#.net answers as I can read both fine. Just learning WPF.
View 1 Replies
Jun 18, 2010
I have a TextBlock on my main window.I would like to bind it's text to the window's title .. eg: myWindow.Title.
View 1 Replies
Feb 7, 2011
I'd like to know if it's possible to have a Label/TextBlock that has two or more different font-sizes/styles/weights within the same label/block.
Something like this:
This is an example of a string.
View 6 Replies
Jul 7, 2009
How do I apply effects such as a DropShadowEffect class to a TextBlock Run element in WPF?
Think of it as a way of highlighting certain areas of text in a TextBlock where the Run element is located, but applying an individual effect to that area instead.
View 1 Replies
Dec 27, 2010
I have a MainPage - mainpage.xaml Inside the MainPage I have a frame that hosts other pages. The first page that is auto loaded is the LogIn - LogIn.xaml
The user enters their email to login (no password required, just email to identify, its an internal app so passwords are not required or even wanted by users).
On MainPage.xaml the header should have a "Hello " TexBlock (name: ui_txbUserName). The LogIn page has a method which on submit gets the UserID (for other reasons and saves it) and the User Name.
I want to change the ui_txbUserName when the person logs in and update if he/she logs out of one account into another. I have looked at INotifyPropertyChanged and Dependency Properties and im just not sure how to go about doing this!
View 1 Replies
Dec 26, 2010
I have a MainPage - mainpage.xamlInside the MainPage I have a frame that hosts other pages. The first page that is auto loaded is the LogIn - LogIn.xamlThe user enters their email to login (no password required, just email to identify, its an internal app so passwords are not required or even wanted by users).On MainPage.xaml the header should have a "Hello " TexBlock (name: ui_txbUserName). The LogIn page has a method which on submit gets the UserID (for other reasons and saves it) and the User Name.I want to change the ui_txbUserName when the person logs in and update if he/she logs out of UsingOfficerID - its a global variable set when a person logs in, its used all over the place in the application.
View 2 Replies
Feb 13, 2012
What I need is some formula to calculate font size of TextBlock for its owner - Let's say I have Canvas height 100.0 then which TextBlock font size should be to fill all space of the Canvas?
P.S. The main problem is that I scroll those TextBlocks horizontally...
View 2 Replies
Jul 22, 2010
I have a very simple StopWatch application in Silverlight. I have the following private properties in my MainPage class: _StopPressed (bool), _TimeStart, _Elapsed (string). I also have a "Start" and "Stop" button. The "Start" button calls a method called UpdateTime that constantly updates _ElapsedTime until _StopPressed is true. When I originally wrote it, UpdateTime would block the UI so I couldn't press the Stop button, so I updated my code to use System.Threading.ThreadPool.QueueUserWorkItem with my UpdateTime method so that it updates _Elapsed on a background thread. That works great at updating the value.However, if I try to set the .Text value of my TextBlock from within UpdateTime(), I get an UnauthorizedAccessException that has to do with one thread accessing the data in another thread.What do I need to do to avoid getting this exception and appropriately update the UI without blocking it?
View 1 Replies
Mar 7, 2009
How to list all font in combobox, and how to change selected font in list accordin font in combobox?
View 3 Replies
Feb 3, 2011
In VB2010 WPF, i have a textblock which, when the window loads, i need the text inside the textblock to be the same as the text in an outside .txt file. How can i do this?
View 1 Replies