Click here to Skip to main content
15,914,642 members
Home / Discussions / WPF
   

WPF

 
AnswerRe: Shape Designer Pin
Gerry Schmitz23-Aug-17 7:06
mveGerry Schmitz23-Aug-17 7:06 
GeneralRe: Shape Designer Pin
Kevin Marois23-Aug-17 7:06
professionalKevin Marois23-Aug-17 7:06 
GeneralRe: Shape Designer Pin
Gerry Schmitz24-Aug-17 5:41
mveGerry Schmitz24-Aug-17 5:41 
GeneralRe: Shape Designer Pin
Kevin Marois24-Aug-17 5:42
professionalKevin Marois24-Aug-17 5:42 
GeneralRe: Shape Designer Pin
Gerry Schmitz24-Aug-17 6:07
mveGerry Schmitz24-Aug-17 6:07 
GeneralRe: Shape Designer Pin
Kevin Marois24-Aug-17 6:11
professionalKevin Marois24-Aug-17 6:11 
GeneralRe: Shape Designer Pin
Gerry Schmitz24-Aug-17 6:35
mveGerry Schmitz24-Aug-17 6:35 
GeneralRe: Shape Designer Pin
Kevin Marois24-Aug-17 6:42
professionalKevin Marois24-Aug-17 6:42 
GeneralRe: Shape Designer Pin
Kevin Marois24-Aug-17 12:37
professionalKevin Marois24-Aug-17 12:37 
GeneralRe: Shape Designer Pin
Gerry Schmitz9-Sep-17 13:17
mveGerry Schmitz9-Sep-17 13:17 
AnswerRe: Shape Designer Pin
Pete O'Hanlon24-Aug-17 22:07
mvePete O'Hanlon24-Aug-17 22:07 
Questiondatagrid multiple selected items Pin
Member 1328589316-Aug-17 23:15
Member 1328589316-Aug-17 23:15 
AnswerRe: datagrid multiple selected items Pin
Pete O'Hanlon17-Aug-17 0:43
mvePete O'Hanlon17-Aug-17 0:43 
GeneralRe: datagrid multiple selected items Pin
Member 1328589317-Aug-17 18:50
Member 1328589317-Aug-17 18:50 
AnswerRe: datagrid multiple selected items Pin
Mycroft Holmes17-Aug-17 21:02
professionalMycroft Holmes17-Aug-17 21:02 
QuestionComboBox Items Not Showing Up Pin
Kevin Marois7-Aug-17 5:28
professionalKevin Marois7-Aug-17 5:28 
AnswerRe: ComboBox Items Not Showing Up Pin
Mycroft Holmes7-Aug-17 15:22
professionalMycroft Holmes7-Aug-17 15:22 
GeneralRe: ComboBox Items Not Showing Up Pin
Kevin Marois8-Aug-17 4:51
professionalKevin Marois8-Aug-17 4:51 
GeneralRe: ComboBox Items Not Showing Up Pin
Kevin Marois8-Aug-17 5:33
professionalKevin Marois8-Aug-17 5:33 
GeneralRe: ComboBox Items Not Showing Up Pin
Mycroft Holmes8-Aug-17 13:57
professionalMycroft Holmes8-Aug-17 13:57 
QuestionListBox Style Problem Pin
Kevin Marois27-Jul-17 6:53
professionalKevin Marois27-Jul-17 6:53 
AnswerRe: ListBox Style Problem Pin
Henrik Jonsson7-Aug-17 9:35
Henrik Jonsson7-Aug-17 9:35 
QuestionStyle Not being Applied Pin
Kevin Marois24-Jul-17 7:43
professionalKevin Marois24-Jul-17 7:43 
I'm trying to create a simple Watermark TextBox. I first created a TextBox class with a WatermarkText property:
public class MaroisTextBox : TextBox
{
    #region DP WatermarkText
    public static readonly DependencyProperty WatermarkTextProperty =
                DependencyProperty.Register("WatermarkText",
                typeof(string),
                typeof(MaroisTextBox),
                new PropertyMetadata("", new PropertyChangedCallback(OnWatermarkTextChanged)));

    public string WatermarkText
    {
        get { return (string)GetValue(WatermarkTextProperty); }
        set { SetValue(WatermarkTextProperty, value); }
    }

    private static void OnWatermarkTextChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
    {
        MaroisTextBox control = (MaroisTextBox)d;

        control.SetWatermark();
    }
    #endregion

    #region Overrides
    protected override void OnGotFocus(RoutedEventArgs e)
    {
        base.OnGotFocus(e);

        SetWatermark();
    }

    protected override void OnLostFocus(RoutedEventArgs e)
    {
        base.OnLostFocus(e);

        SetWatermark();
    }
    #endregion

    private void SetWatermark()
    {
        if (IsFocused)
        {
            // If the watermark is showing, remove it
            if (Text.CompareTo(WatermarkText) == 0)
            {
                Text = string.Empty;
            }
        }
        else
        {
            // If the Text property is empty then appply the watermark
            if (string.IsNullOrEmpty(Text))
            {
                Text = WatermarkText;
            }
        }
    }
}

Next I created a style for it
<Style x:Key="SearchTextBoxStyle"
        TargetType="TextBox">

<pre>
<Setter Property="FontFamily" Value="{StaticResource AppFontName}"/>
<Setter Property="FontSize" Value="{StaticResource NormalFontSize}"/>
<Setter Property="FontStyle" Value="Normal"/>
<Setter Property="Foreground" Value="Black"/>
<Setter Property="HorizontalAlignment" Value="Left"/>
<Setter Property="VerticalAlignment" Value="Center"/>
<Setter Property="Margin" Value="2"/>
<Setter Property="Height" Value="30"/>

<Style.Triggers>
    <Trigger Property="IsFocused" Value="True">

        <Setter Property="Foreground" Value="Red"/>
        <Setter Property="FontStyle" Value="Italic"/>

    </Trigger>
</Style.Triggers>




And its usage
<MaroisTextBox Grid.Column="3"
                    Width="200"
                    Margin="20,2,2,2"
                    Text="{Binding SearchText}"
                    WatermarkText="Search..."
                    Style="{StaticResource SearchTextBoxStyle}"/>

When I click into the textbox, the code behind runs as expected. Yet I don't see anything in the textbox.

When I click out, the watermark text appears, but in black and not italic.

I don't see why this won't work. Anyone see what's wrong here?

Thanks
If it's not broken, fix it until it is.
Everything makes sense in someone's mind.
Ya can't fix stupid.

AnswerRe: Style Not being Applied Pin
Richard Deeming24-Jul-17 7:54
mveRichard Deeming24-Jul-17 7:54 
GeneralRe: Style Not being Applied Pin
Kevin Marois24-Jul-17 10:17
professionalKevin Marois24-Jul-17 10:17 

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.