動作環境
Windows 7 Pro (32bit)
Microsoft Visual Studio 2017 Community
Sublime Text 2
@ WPF 4.5入門 by 大田一希さん
No.4818 / 9985
Labelコントロールは、「_アルファベット」でアクセスキーを提供して、Targetプロパティに設定したコントロールにフォーカスをうつす機能があります。
試してみた。
XAML
<Window x:Class="_170426_t1150_label.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:_170426_t1150_label"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<Grid>
<StackPanel>
<Label Content="_NextGenration" Target="{Binding ElementName=T_1}"/>
<TextBox x:Name="T_1"/>
<Label Content="V_oyager" Target="{Binding ElementName=T_2}"/>
<TextBox x:Name="T_2"/>
</StackPanel>
</Grid>
</Window>
MainWindow.xaml.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace _170426_t1150_label
{
/// <summary>
/// MainWindow.xaml の相互作用ロジック
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
}
}
Altキーを押した状態。
Labelの下線文字
Next_Generation
のような文字をLabelに表示しようとすると、アクセスキーと判断されてしまう。
複数の下線("_")を入れた場合、最初の下線がアクセスキーになってしまう。
下線入りの文字列を表示するにはLabelでなくTextBlockを使うというのが現在の理解。
You can not use a Label with underline. Use a TextBlock instead.
装飾の下線と文字列中の下線がどちらもunderlineのような表記なのは検索性が悪い。
\underline{NextGeneration}
Next\_Generation