WPF输入框里面加文本提示

xml 复制代码
 <TextBox x:Name="txtSampleNo"  Width="265" Height="36" VerticalContentAlignment="Center"  HorizontalAlignment="Left" VerticalAlignment="Center" Margin="10,0,0,0"   >
     <TextBox.Resources>
         <VisualBrush x:Key="text1" Opacity="1" TileMode="None" AlignmentX="Left" Stretch="None">
             <VisualBrush.Visual>
                 <TextBlock Text="输入样品编号" FontSize="16" />
             </VisualBrush.Visual>
         </VisualBrush>
     </TextBox.Resources>
     <TextBox.Style>
         <Style TargetType="TextBox">
             <Style.Triggers>
                 <Trigger Property="Text" Value="{x:Null}">
                     <Setter Property="Background" Value="{StaticResource text1}"/>
                 </Trigger>
                 <Trigger Property="Text" Value="">
                     <Setter Property="Background" Value="{StaticResource text1}"/>
                 </Trigger>
             </Style.Triggers>
         </Style>
     </TextBox.Style>
 </TextBox>
相关推荐
布吉岛的石头16 小时前
Java 程序员第 43 阶段05:微服务整合大模型,跨服务调用架构设计实战,Seata分布式事务实战
wpf
步步为营DotNet16 小时前
基于.NET Aspire 实现云原生应用的高效监控与可观测性
云原生·.net·wpf
芒鸽1 天前
HarmonyOS 分布式开发实战:设备协同、数据共享与跨设备迁移
分布式·wpf·harmonyos
Volunteer Technology1 天前
Flink状态管理与容错(二)
大数据·flink·wpf
happyprince2 天前
07_verl-Trainer模块详解
人工智能·架构·wpf·强化学习
bugcome_com2 天前
WPF + Prism 技术指南与实战项目(二、模板搭建)
wpf
小满Autumn2 天前
log4net 日志框架 — 从配置到实战速查手册
笔记·c#·.net·wpf·上位机·log4net
政沅同学3 天前
基于 C# WPF + HALCON 的工业视觉算法工具框架(开源)
开发语言·c#·wpf
happyprince3 天前
03_verl-设计理念与核心原理
wpf
happyprince3 天前
01_verl-项目概览与架构总览
架构·wpf