1 <Window x:Class="MainWindow"
2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4 xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
5 xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
6 xmlns:local="clr-namespace:NEATEST"
8 Title="MainWindow" Height="450" Width="800">
9 <Grid Background="White" HorizontalAlignment="Right" VerticalAlignment="Top" >
10 <TextBox Margin="-115,23,18,-23">
12 <Style TargetType="TextBox" xmlns:sys="clr-namespace:System;assembly=mscorlib">
14 <VisualBrush x:Key="CueBannerBrush" AlignmentX="Left" AlignmentY="Center" Stretch="None">
16 <Label Content="Search" Foreground="LightGray" />
21 <Trigger Property="Text" Value="{x:Static sys:String.Empty}">
22 <Setter Property="Background" Value="{StaticResource CueBannerBrush}" />
24 <Trigger Property="Text" Value="{x:Null}">
25 <Setter Property="Background" Value="{StaticResource CueBannerBrush}" />
27 <Trigger Property="IsKeyboardFocused" Value="True">
28 <Setter Property="Background" Value="White" />