次の機能を作成するにはどうすればよいですか:
テキストボックスがフォーカスされておらず、ユーザーがそこにテキストを入力していない場合、テキストボックスにはEnter Name Here...のようなデフォルト値が必要です。ユーザーがそのテキストボックスをクリックすると、このラベルは消えます。
どんな助けにも感謝します。
これは私がこれまでに持っているものです。しかし、これはコントロール テンプレートです。この質問ではあまり役に立たないと思いますが、とにかく。
<ControlTemplate x:Key="TextBoxBaseControlTemplate" TargetType="{x:Type TextBoxBase}">
<Border Background="{TemplateBinding Background}"
x:Name="Bd" BorderBrush="LightGray"
BorderThickness="{TemplateBinding BorderThickness}" CornerRadius="10">
<Grid VerticalAlignment="Center">
<ScrollViewer Margin="5 0 0 0" HorizontalScrollBarVisibility="Disabled" VerticalScrollBarVisibility="Disabled" x:Name="PART_ContentHost"/>
</Grid>
</Border>
<ControlTemplate.Triggers>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Background" Value="{DynamicResource {x:Static SystemColors.ControlBrushKey}}" TargetName="Bd"/>
<Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.GrayTextBrushKey}}"/>
</Trigger>
<Trigger Property="Width" Value="Auto">
<Setter Property="MinWidth" Value="100"/>
</Trigger>
<Trigger Property="Height" Value="Auto">
<Setter Property="MinHeight" Value="20"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>