当前位置:   article > 正文

WPF基础五:UI②内容元素Label_wpf label yangshi

wpf label yangshi

 Label

表示控件的文本标签,并提供快捷键(access keys)支持。

此类提供对快捷键的功能和视觉支持 。 它经常用于启用对等控件的快速键盘访问 TextBox 。 若要将分配 Label 到 Control ,请将 Target 属性设置为当用户按下访问键时应获得焦点的控件。 设置目标还会导致 Microsoft UI 自动化使用标签文本作为目标控件的名称。 有关详细信息,请参阅 辅助功能

若要设置访问密钥,请在应为访问键的字符前添加一个下划线。 如果内容有多个下划线字符,则只会将第一个下划线字符转换为访问密钥;其他下划线显示为普通文本。 如果要转换为访问键的下划线不是第一个下划线,请在要转换的下划线前面使用两个连续的下划线。 例如,以下代码包含一个访问键,并显示为 _Hello World:

<Label>__Hello_World</Label>   

由于 H 前面的下划线为2条,因此 W key 注册为访问键。

标签不可设定焦点,并且不是制表位。 有关详细信息,请参阅 焦点概述

Label是 ContentControl ,这意味着它可以包含任何类型的单个对象 (例如字符串、图像或面板) 。 有关更多信息,请参见 ContentControl 类。

自定义标签控件

若要对多个 Label 控件应用相同的属性设置,请使用 Style 属性。 您可以修改 ControlTemplate 默认值,为控件指定独特的外观。 有关创建 ControlTemplate 的详细信息,请参阅 通过创建 System.windows.controls.controltemplate> 自定义现有控件的外观。 若要查看特定于 Label 的部分和状态,请参阅 标签样式和模板

此控件的依赖属性可能由控件的默认样式设置。 如果按默认样式设置属性,则当控件出现在应用程序中时,属性可能会更改为默认值。 默认样式取决于应用程序运行时使用的桌面主题。 有关详细信息,请参阅 默认的 WPF 主题

只有视觉对象属性已存在于控件的默认模板中并且已使用 TemplateBinding 设置时,设置该属性才有效。 在通过创建 ControlTemplate 自定义现有控件的外观一文的更改控件的视觉结构部分可以找到视觉属性列表。


字段

名称备注权限

TargetPropert

标识 Target 依赖项属性public

属性

名称备注权限

Target

获取或设置当用户按下标签的访问键时获得焦点的元素。public
<Label Target=" nameOfExistingElement"/>

方法

名称备注权限

OnCreateAutomationPeer

提供 LabelAutomationPeer 此控件的适当实现,作为 WPF 基础结构的一部分protected

XAML范例

以下范例,Label控件通过助记符(快捷键:Alt+助记符)和Target属性,提供快捷方式获取控件的焦点。

下面例子:Label的First实例的快捷键是Alt+F,Label的Second实例的快捷键是Alt+S。

注册TextBox获取焦点的事件GotFocus。并提供事件的处理方法。

通过Label的快捷键使得Textbox控件获取焦点。

  1. <Window
  2. x:Class="LabelDemo.MainWindow"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:LabelDemo"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. Title="MainWindow"
  9. Width="800"
  10. Height="450"
  11. mc:Ignorable="d">
  12. <Grid>
  13. <Grid.ColumnDefinitions>
  14. <ColumnDefinition />
  15. <ColumnDefinition />
  16. </Grid.ColumnDefinitions>
  17. <StackPanel>
  18. <Label
  19. Height="40"
  20. HorizontalAlignment="Center"
  21. VerticalAlignment="Center"
  22. VerticalContentAlignment="Center"
  23. BorderBrush="Red"
  24. BorderThickness="2"
  25. Content="_First"
  26. Target="{Binding ElementName=TextBox1}"/>
  27. <Label
  28. Height="40"
  29. HorizontalAlignment="Center"
  30. VerticalAlignment="Center"
  31. VerticalContentAlignment="Center"
  32. BorderBrush="Red"
  33. BorderThickness="2"
  34. Content="_Second"
  35. Target="{Binding ElementName=TextBox2}"/>
  36. </StackPanel>
  37. <StackPanel Grid.Column="1">
  38. <TextBox
  39. x:Name="TextBox1"
  40. Height="40"
  41. HorizontalAlignment="Center"
  42. VerticalAlignment="Center"
  43. VerticalContentAlignment="Center"
  44. Text="TextBox1"
  45. GotFocus="TextBox1_GotFocus"/>
  46. <TextBox
  47. x:Name="TextBox2"
  48. Height="40"
  49. HorizontalAlignment="Center"
  50. VerticalAlignment="Center"
  51. VerticalContentAlignment="Center"
  52. Text="TextBox2"
  53. GotFocus="TextBox2_GotFocus"/>
  54. </StackPanel>
  55. </Grid>
  56. </Window>
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows;
  7. using System.Windows.Controls;
  8. using System.Windows.Data;
  9. using System.Windows.Documents;
  10. using System.Windows.Input;
  11. using System.Windows.Media;
  12. using System.Windows.Media.Imaging;
  13. using System.Windows.Navigation;
  14. using System.Windows.Shapes;
  15. namespace LabelDemo
  16. {
  17. /// <summary>
  18. /// MainWindow.xaml 的交互逻辑
  19. /// </summary>
  20. public partial class MainWindow : Window
  21. {
  22. public MainWindow()
  23. {
  24. InitializeComponent();
  25. }
  26. private void TextBox1_GotFocus(object sender, RoutedEventArgs e)
  27. {
  28. MessageBox.Show((sender as TextBox).Name+ "获得焦点");
  29. }
  30. private void TextBox2_GotFocus(object sender, RoutedEventArgs e)
  31. {
  32. MessageBox.Show((sender as TextBox).Name + "获得焦点");
  33. }
  34. }
  35. }

运行

当按下Alt+F,或者鼠标左键单击TextBox1等方法,使得TextBox1获取焦点后

当按下Alt+S,或者鼠标左键单击TextBox2等方法,使得TextBox2获取焦点后

UIElement.GotFocus是控件从获取焦点时触发。


C#实例

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows;
  7. using System.Windows.Controls;
  8. using System.Windows.Data;
  9. using System.Windows.Documents;
  10. using System.Windows.Input;
  11. using System.Windows.Media;
  12. using System.Windows.Media.Imaging;
  13. using System.Windows.Navigation;
  14. using System.Windows.Shapes;
  15. namespace LabelDemo
  16. {
  17. /// <summary>
  18. /// MainWindow.xaml 的交互逻辑
  19. /// </summary>
  20. public partial class MainWindow : Window
  21. {
  22. public MainWindow()
  23. {
  24. InitializeComponent();
  25. Grid grid = (this as Window).Content as Grid;
  26. ColumnDefinition column1 = new ColumnDefinition();
  27. ColumnDefinition column2 = new ColumnDefinition();
  28. grid.ColumnDefinitions.Add(column1);
  29. grid.ColumnDefinitions.Add(column2);
  30. //RowDefinition row1 = new RowDefinition();
  31. //RowDefinition row2 = new RowDefinition();
  32. //grid.RowDefinitions.Add(row1);
  33. //grid.RowDefinitions.Add(row2);
  34. StackPanel stackPanel1 = new StackPanel();
  35. StackPanel stackPanel2 = new StackPanel();
  36. Label label1 = new Label();
  37. Label label2 = new Label();
  38. TextBox textBox1 = new TextBox();
  39. TextBox textBox2 = new TextBox();
  40. AccessText _First = new AccessText();
  41. AccessText _Second = new AccessText();
  42. _First.Text = "_First";
  43. _Second.Text = "_Second";
  44. label1.Content = _First;
  45. label1.Target = textBox1;
  46. label1.Height = 40;
  47. label1.HorizontalAlignment = HorizontalAlignment.Center;
  48. label1.VerticalAlignment = VerticalAlignment.Center;
  49. label1.VerticalContentAlignment = VerticalAlignment.Center;
  50. label1.BorderBrush = Brushes.Red;
  51. label1.BorderThickness = new Thickness(2);
  52. label2.Content = _Second;
  53. label2.Target = textBox2;
  54. label2.Height = 40;
  55. label2.HorizontalAlignment = HorizontalAlignment.Center;
  56. label2.VerticalAlignment = VerticalAlignment.Center;
  57. label2.VerticalContentAlignment = VerticalAlignment.Center;
  58. label2.BorderBrush = Brushes.Red;
  59. label2.BorderThickness = new Thickness(2);
  60. textBox1.Name = "TextBox1";
  61. textBox1.Height = 40;
  62. textBox1.HorizontalAlignment = HorizontalAlignment.Center;
  63. textBox1.VerticalAlignment = VerticalAlignment.Center;
  64. textBox1.VerticalContentAlignment = VerticalAlignment.Center;
  65. textBox1.Text = "TextBox1";
  66. textBox1.GotFocus += TextBox1_GotFocus;
  67. textBox2.Name = "TextBox2";
  68. textBox2.Height = 40;
  69. textBox2.HorizontalAlignment = HorizontalAlignment.Center;
  70. textBox2.VerticalAlignment = VerticalAlignment.Center;
  71. textBox2.VerticalContentAlignment = VerticalAlignment.Center;
  72. textBox2.Text = "TextBox2";
  73. textBox2.GotFocus += TextBox2_GotFocus;
  74. stackPanel1.Children.Add(label1);
  75. stackPanel1.Children.Add(label2);
  76. stackPanel2.Children.Add(textBox1);
  77. stackPanel2.Children.Add(textBox2);
  78. grid.Children.Add(stackPanel1);
  79. grid.Children.Add(stackPanel2);
  80. Grid.SetColumn(stackPanel2,1);
  81. }
  82. private void TextBox1_GotFocus(object sender, RoutedEventArgs e)
  83. {
  84. MessageBox.Show((sender as TextBox).Name+ "获得焦点");
  85. }
  86. private void TextBox2_GotFocus(object sender, RoutedEventArgs e)
  87. {
  88. MessageBox.Show((sender as TextBox).Name + "获得焦点");
  89. }
  90. }
  91. }

 

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号