0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Visual Studio / WPF > Label > アクセスキーを設定して、ターゲットコントロールにフォーカスを移す | 下線文字表示はLabelでなくTextBlockを使う

Last updated at Posted at 2017-04-26
動作環境
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キーを押した状態。

work.png

Labelの下線文字

Next_Generationのような文字をLabelに表示しようとすると、アクセスキーと判断されてしまう。

複数の下線("_")を入れた場合、最初の下線がアクセスキーになってしまう。

下線入りの文字列を表示するにはLabelでなくTextBlockを使うというのが現在の理解。

You can not use a Label with underline. Use a TextBlock instead.

装飾の下線と文字列中の下線がどちらもunderlineのような表記なのは検索性が悪い。

\underline{NextGeneration}
Next\_Generation
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?