<Button x:Name="btn"Content="退出"Width=" 100"Height="25"Click="btn_Click" IsDefault="True"/>
<Button x:Name="btn" <!-- 控件标识:定义按钮的实例名称为"btn",用于后台代码(如C#)中引用该控件 -->Content="退出" <!-- 显示文本:设置按钮上显示的文本内容为"退出" -->Width=" 100" <!-- 控件宽度:设置按钮宽度为100设备无关单位(注意值前空格会被XAML自动忽略) -->Height="25" <!-- 控件高度:设置按钮高度为25设备无关单位 -->Click="btn_Click" <!-- 事件绑定:将按钮的点击事件关联到后台代码中的btn_Click方法 -->IsDefault="True"/> <!-- 默认行为:设置该按钮为窗口默认按钮,用户按Enter键时会自动触发点击事件 -->
<WrapPanel><TextBlock Text="这是一个TextBlock文字块" Margin="5"/><TextBlock Text="粗体文字" FontWeight="Bold" Margin="5"/><TextBlock Text="粗体文字" FontWeight="Light" Margin="5"/><TextBlock Text="斜体文字" FontStyle="Italic" Margin="5"/><TextBlock Text="微软雅黑" FontFamily="Microsoft YaHei UI" Margin="5"/><TextBlock Text="大号字体" Foreground="Red" Margin="5"/><TextBlock Text="红色文字" Foreground="Yellow" Margin="5"/><TextBlock Text="底色文字" Foreground="Yellow" Background="Red" Margin="5"/><TextBlock Background="LightGray" Height="25"><Run Foreground="Red">这行文字</Run><Run Foreground="Green">由三部分</Run><Run Foreground="Blue">组成</Run></TextBlock><Grid Width="150" Height="100" Margin="5" Background="LightGoldenrodYellow"><TextBlock Text="这段文字体现了文字的文本换行属性TextWrapping" TextWrapping="Wrap" Margin="10"/></Grid><!--使用Run--><Grid><TextBlock x:Name="txtBlock"Width="320"Height="100"FontSize="15"FontFamily="微软雅黑"FontWeight="Black"FontStretch="Condensed"Foreground="#dddddd"Background="Teal"TextAlignment="Center"TextWrapping="Wrap"TextTrimming="CharacterEllipsis"Margin="10" Padding="5"HorizontalAlignment="Left"VerticalAlignment="Center"LineHeight="30"ToolTip="《临江仙·滚滚长江东逝水》"><Run Foreground="#CDB632" TextDecorations="Underline">滚滚长江东逝水,浪花淘尽英雄。是非成败转头空。青山依旧在,几度夕阳红。</Run><Run Text="白发渔樵江渚上,惯看秋月春风。一壶浊酒喜相逢。古今多少事,都付笑谈中。"/></TextBlock></Grid>
</WrapPanel>
一、基础文本控件配置
- 基础样式组合
<TextBlock Text="粗体文字" FontWeight="Bold" Margin="5"/>
<TextBlock Text="斜体文字" FontStyle="Italic" Margin="5"/>
-
- 实现粗体/斜体效果,
Margin="5"
统一设置四边5单位间距 - 注意:
FontWeight="Light"
在WPF中有效,但需确保字体支持该权重
- 实现粗体/斜体效果,
字体与颜色定制
<TextBlock Text="微软雅黑" FontFamily="Microsoft YaHei UI"/>
<TextBlock Text="大号字体" Foreground="Red"/> <!-- 实际未设置FontSize属性 -->
<TextBlock Text="红色文字" Foreground="Yellow"/> <!-- 文本内容与颜色反讽设计 -->
- 支持中文字体名称直接调用(需系统安装对应字体)
- 警示案例:第四个控件
Background="Red"
与黄色前景形成高对比警示效果
二、进阶排版技术
- 分段式文本(Run元素)
<TextBlock><Run Foreground="Red">这行文字</Run><Run Foreground="Green">由三部分</Run><Run Foreground="Blue">组成</Run>
</TextBlock>
-
- 允许同一TextBlock内分段设置样式
- 支持混合使用
TextDecorations="Underline"
等修饰属性
诗词排版案例
<TextBlock LineHeight="30" TextAlignment="Center" TextTrimming="CharacterEllipsis"><Run Foreground="#CDB632" TextDecorations="Underline">滚滚长江东逝水...</Run><Run>白发渔樵江渚上...</Run>
</TextBlock>
LineHeight="30"
控制行距为2倍默认高度(基于15px字体)TextTrimming="CharacterEllipsis"
实现溢出文本以"..."省略ToolTip
属性实现悬停显示完整诗词标题
三、布局与容器整合
- 自适应布局容器
<Grid Width="150" Height="100" Background="LightGoldenrodYellow"><TextBlock TextWrapping="Wrap" Margin="10"/>
</Grid>
-
TextWrapping="Wrap"
强制文本在容器边界换行- 嵌套布局时,
Grid
容器通过明确尺寸约束文本域
扩展说明
- 颜色值规范
- 支持十六进制(
#CDB632
)、命名颜色(Red
)、系统资源(SystemColors
) - 推荐使用ARGB格式(如
#80FF0000
半透明红)增强设计灵活性
- 支持十六进制(
- 排版精度控制
TextAlignment="Center"
实现水平居中VerticalAlignment="Center"
确保容器内垂直居中Padding="5"
在文本与容器边界间添加缓冲空间
- 字体技术细节
FontStretch="Condensed"
压缩字符宽度(需字体支持)微软雅黑
在Windows系统默认安装,跨平台需字体回退策略
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center"><TextBlock Text="用户名" Margin="5"/><TextBox x:Name="txtbox" Width="100" Height="25" MaxLength="10" CharacterCasing="Upper"/><Button x:Name="btn" Content="确定" Height="25" Margin="5 0" Click="btn_Click"/></StackPanel>
<!-- 水平布局容器:创建水平排列的堆叠面板,在父容器中水平和垂直居中 -->
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center"><!-- 标签控件:显示"用户名"文本,四边保留5单位间距 --><TextBlock Text="用户名" Margin="5"/><!-- 输入框控件:设置输入限制与格式规范 --><TextBox x:Name="txtbox" Width="100" Height="25"MaxLength="10" <!-- 最大字符数:限制输入不超过10个字符 -->CharacterCasing="Upper"/> <!-- 自动转换:强制所有输入字母转为大写 --><!-- 功能按钮:绑定点击事件实现交互逻辑 --><Button x:Name="btn" Content="确定" Height="25"Margin="5 0" <!-- 边距优化:左右无间距,上下保留5单位间距 -->Click="btn_Click"/> <!-- 事件绑定:关联后台btn_Click方法 -->
</StackPanel>
// 创建文本范围对象:获取RichTextBox从开头到结尾的全部内容
TextRange txtRange = new TextRange(richTxtBox.Document.ContentStart, // 内容起始点(逻辑位置)richTxtBox.Document.ContentEnd // 内容结束点(包含最后一个字符后的逻辑位置)
);// 弹窗显示纯文本内容(自动过滤所有格式和控件)
MessageBox.Show(txtRange.Text); // 实际应用场景:文本导出预览/字数统计 // 创建新段落容器(相当于HTML的<p>标签)
Paragraph paragraph = new Paragraph(); // 默认带段落间距,可通过Margin属性调整 // 创建带动态时间的文本片段(类似<span>标签)
Run run = new Run($"当前时间:{DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")}");
run.Foreground = Brushes.Black; // 设置字体颜色(等效于Foreground="#FF000000")// 将文本片段插入段落
paragraph.Inlines.Add(run); // 支持多Run组合实现彩色混排文本 // 将段落添加到富文本框文档末尾
richTxtBox.Document.Blocks.Add(paragraph); // Blocks集合管理段落/表格等块级元素
二、扩展技术说明(WPF富文本处理)
1. 文档对象模型
对象 | 作用 |
---|---|
TextRange | 跨段落文本操作(支持格式复制/批量修改) |
Paragraph | 段落容器(可设置TextIndent 首行缩进/LineHeight 行高) |
Run | 基础文本单元(最小样式应用范围,改变属性会中断样式继承) |
<StackPanel><RichTextBox x:Name="richTxtBox" Margin="10 5" Height="270"><FlowDocument><Paragraph>RichTextBox富文本框控件到底有什么强大的功能?<Bold Foreground="DarkRed">请看下面.</Bold></Paragraph><Paragraph Foreground="Blue">RichTextBox唯一的子元素是FlowDocument</Paragraph><Paragraph Foreground="DarkGreen">FlowDocument是指流文档,一个流文档由一个或多个Block构成,所以它有一个Blocks属性。Block只是一个抽象基类,所以流文档的子元素其实是继承了Block的子类,例如:</Paragraph><List MarkerOffset="25" MarkerStyle="Decimal" StartIndex="1"><ListItem><Paragraph>BlockUIContainer(UI元素容器)</Paragraph></ListItem><ListItem><Paragraph>List(有序列表)</Paragraph></ListItem><ListItem><Paragraph>Paragraph(段落)</Paragraph></ListItem><ListItem><Paragraph>Section(分组)</Paragraph></ListItem><ListItem><Paragraph>Table(网格)</Paragraph></ListItem></List></FlowDocument></RichTextBox><Button x:Name="btn" Content="确定" Margin="10,5" Click="btn_Click"/>
</StackPanel>
<!-- 垂直堆叠容器:默认垂直排列子元素 -->
<StackPanel><!-- 富文本编辑器:支持复杂内容排版与交互 --><RichTextBox x:Name="richTxtBox" Margin="10 5" <!-- 边距设置:左右10单位,上下5单位 -->Height="270"> <!-- 固定高度:适合显示多段落内容 --><!-- 流式文档容器:承载结构化富文本内容 --><FlowDocument><!-- 混合样式段落:演示格式嵌套 --><Paragraph>RichTextBox富文本框控件到底有什么强大的功能?<Bold Foreground="DarkRed">请看下面.</Bold> <!-- 粗体+颜色复合样式 --></Paragraph><!-- 带颜色段落:说明核心概念 --><Paragraph Foreground="Blue">RichTextBox唯一的子元素是FlowDocument <!-- 重要约束条件 --></Paragraph><!-- 分层说明段落:解释文档结构 --><Paragraph Foreground="DarkGreen">FlowDocument是指流文档,一个流文档由一个或多个Block构成,所以它有一个Blocks属性。Block只是一个抽象基类,所以流文档的子元素其实是继承了Block的子类,例如:</Paragraph><!-- 有序列表:展示Block派生类 --><List MarkerOffset="25" <!-- 编号缩进25单位 -->MarkerStyle="Decimal" <!-- 使用数字编号 -->StartIndex="1"> <!-- 起始编号为1 --><ListItem><Paragraph>BlockUIContainer(UI元素容器)</Paragraph> <!-- 可嵌入按钮等控件 --></ListItem><ListItem><Paragraph>List(有序列表)</Paragraph> <!-- 当前列表自身的类型 --></ListItem><ListItem><Paragraph>Paragraph(段落)</Paragraph> <!-- 基础文本容器 --></ListItem><ListItem><Paragraph>Section(分组)</Paragraph> <!-- 实现多列布局 --></ListItem><ListItem><Paragraph>Table(网格)</Paragraph> <!-- 创建表格数据 --></ListItem></List></FlowDocument></RichTextBox><!-- 功能按钮:触发后台交互逻辑 --><Button x:Name="btn" Content="确定" Margin="10,5" <!-- 边距设置:左右10单位,上下5单位 -->Click="btn_Click"/> <!-- 事件绑定:需在后台实现处理方法 -->
</StackPanel>
<Button x:Name="btn2" Content="网站" Width="100" Height="30" Margin="5" Click="btn2_Click"><Button.ToolTip><StackPanel><TextBlock Text="官方网站" FontWeight="Bold"/><TextBlock Text="点击这个按钮,进入WPF中文网站"/><Border BorderBrush="Silver" BorderThickness="0 1 0 0" Margin="0 4"/><TextBlock Text="http://www.wpfsoft.com" FontStyle="Italic"/></StackPanel></Button.ToolTip></Button>
<!-- 网站导航按钮:集成多层级工具提示 -->
<Button x:Name="btn2" Content="网站" Width="100" <!-- 标准尺寸:适配主流导航栏布局 -->Height="30"Margin="5" <!-- 边距:四边保留5单位间隔 -->Click="btn2_Click"> <!-- 事件绑定:需实现网页跳转逻辑 --><!-- 复合式工具提示:突破默认单行文本限制 --><Button.ToolTip><StackPanel><!-- 标题行:突出显示网站性质 --><TextBlock Text="官方网站" FontWeight="Bold"/> <!-- 粗体强化重点 --><!-- 操作指引:说明按钮核心功能 --><TextBlock Text="点击这个按钮,进入WPF中文网站"/><!-- 分隔线:使用边框模拟水平分割线 --><Border BorderBrush="Silver" BorderThickness="0 1 0 0" <!-- 仅显示上边框 -->Margin="0 4"/> <!-- 上下增加4单位间距 --><!-- 网址展示:斜体弱化辅助信息 --><TextBlock Text="http://www.wpfsoft.com" FontStyle="Italic"/> <!-- 提示可复制性 --></StackPanel></Button.ToolTip>
</Button>