Click here to Skip to main content
15,792,771 members
Home / Discussions / WPF
   

WPF

 
GeneralRe: Apply TextBlock Captions at Runtime Pin
Kevin Marois14-May-21 14:42
professionalKevin Marois14-May-21 14:42 
GeneralRe: Apply TextBlock Captions at Runtime Pin
Pete O'Hanlon15-May-21 0:51
subeditorPete O'Hanlon15-May-21 0:51 
AnswerRe: Apply TextBlock Captions at Runtime Pin
Mycroft Holmes15-May-21 13:25
professionalMycroft Holmes15-May-21 13:25 
GeneralRe: Apply TextBlock Captions at Runtime Pin
Gerry Schmitz16-May-21 12:17
mveGerry Schmitz16-May-21 12:17 
QuestionWPF TextBox Handle Data Pasted In Pin
Kevin Marois14-Apr-21 9:29
professionalKevin Marois14-Apr-21 9:29 
AnswerRe: WPF TextBox Handle Data Pasted In Pin
Richard Deeming14-Apr-21 23:50
mveRichard Deeming14-Apr-21 23:50 
GeneralRe: WPF TextBox Handle Data Pasted In Pin
Kevin Marois15-Apr-21 6:49
professionalKevin Marois15-Apr-21 6:49 
QuestionFormat Percentage Pin
Kevin Marois13-Apr-21 10:16
professionalKevin Marois13-Apr-21 10:16 
I have a nullable decimal TaxRate property on an entity. I want to format/style the textbox to enter a percentage. What I have so far doesn't work. If I start out by entering a decimal point, then it works fine.

If I start out by entering a digit, then I cannot enter a decimal.
<Style x:Key="percentageStyle" 
        TargetType="{x:Type TextBox}"
        BasedOn="{StaticResource textBoxStyle}">

<pre>
<Setter Property="Text" Value="{Binding SelectedStatesCountiesCities.TaxRate, StringFormat={}{0:N2}%}" />
<Style.Triggers>
    <Trigger Property="IsKeyboardFocused" Value="True">
        <Setter Property="Text" Value="{Binding SelectedStatesCountiesCities.TaxRate}" />
    </Trigger>
</Style.Triggers>


<TextBox Grid.Row="1"
            Grid.Column="2"
            Text="{Binding SelectedStatesCountiesCities.TaxRate, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
            Style="{StaticResource percentageStyle}"
            HorizontalAlignment="Left"
            IsEnabled="True"
            Width="100"/>
If it's not broken, fix it until it is.
Everything makes sense in someone's mind.
Ya can't fix stupid.

AnswerRe: Format Percentage Pin
Richard Deeming13-Apr-21 23:36
mveRichard Deeming13-Apr-21 23:36 
GeneralRe: Format Percentage Pin
Kevin Marois14-Apr-21 8:42
professionalKevin Marois14-Apr-21 8:42 
QuestionAvalonEdit Sytax Highlighting for XAML files? Pin
#realJSOP5-Apr-21 9:57
mve#realJSOP5-Apr-21 9:57 
AnswerRe: AvalonEdit Sytax Highlighting for XAML files? Pin
Richard Deeming6-Apr-21 1:22
mveRichard Deeming6-Apr-21 1:22 
QuestionRevert Property Change Pin
Kevin Marois5-Apr-21 8:20
professionalKevin Marois5-Apr-21 8:20 
AnswerRe: Revert Property Change Pin
#realJSOP5-Apr-21 9:55
mve#realJSOP5-Apr-21 9:55 
QuestionUI not updating Pin
#realJSOP28-Mar-21 4:52
mve#realJSOP28-Mar-21 4:52 
AnswerRe: UI not updating Pin
Pete O'Hanlon28-Mar-21 7:10
subeditorPete O'Hanlon28-Mar-21 7:10 
GeneralRe: UI not updating Pin
#realJSOP28-Mar-21 7:40
mve#realJSOP28-Mar-21 7:40 
AnswerRe: UI not updating Pin
Richard Deeming28-Mar-21 23:20
mveRichard Deeming28-Mar-21 23:20 
GeneralRe: UI not updating Pin
#realJSOP29-Mar-21 3:59
mve#realJSOP29-Mar-21 3:59 
AnswerRe: UI not updating Pin
Gerry Schmitz29-Mar-21 10:15
mveGerry Schmitz29-Mar-21 10:15 
GeneralRe: UI not updating Pin
#realJSOP29-Mar-21 11:38
mve#realJSOP29-Mar-21 11:38 
GeneralRe: UI not updating Pin
Gerry Schmitz29-Mar-21 12:24
mveGerry Schmitz29-Mar-21 12:24 
GeneralRe: UI not updating Pin
#realJSOP29-Mar-21 13:07
mve#realJSOP29-Mar-21 13:07 
GeneralRe: UI not updating Pin
Gerry Schmitz29-Mar-21 13:19
mveGerry Schmitz29-Mar-21 13:19 
GeneralRe: UI not updating Pin
#realJSOP30-Mar-21 0:33
mve#realJSOP30-Mar-21 0:33 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.