Label.UseMnemonic プロパティ

定義

コントロールの プロパティ内のアンパサンド文字 (&) Text をアクセス キープレフィックス文字として解釈するかどうかを示す値を取得または設定します。

public:
 property bool UseMnemonic { bool get(); void set(bool value); };
public bool UseMnemonic { get; set; }
member this.UseMnemonic : bool with get, set
Public Property UseMnemonic As Boolean

プロパティ値

ラベルのテキストにアンパサンド文字を表示せずに、アンパサンドの直後の文字に下線を付け、その下線付き文字をアクセス キーとして扱う場合は true。アンパサンド文字をそのままコントロールのテキストに表示する場合は false。 既定値は、true です。

次のコード例では、 プロパティと ImageIndex プロパティをLabel使用して表示される 3 次元罫線と画像を含むコントロールを作成する方法をImageList示します。 コントロールには、ニーモニック文字が指定されたキャプションもあります。 コード例では、 プロパティと PreferredWidth プロパティをPreferredHeight使用して、Label表示されるフォームのコントロールのサイズを適切に設定します。 この例では、 が ImageList 作成され、imageList1 という名前が付けられ、2 つのイメージが読み込まれている必要があります。 この例では、コードが、コードに名前空間が追加された System.Drawing フォーム内にある必要もあります。

public:
   void CreateMyLabel()
   {
      // Create an instance of a Label.
      Label^ label1 = gcnew Label;
      
      // Set the border to a three-dimensional border.
      label1->BorderStyle = System::Windows::Forms::BorderStyle::Fixed3D;
      // Set the ImageList to use for displaying an image.
      label1->ImageList = imageList1;
      // Use the second image in imageList1.
      label1->ImageIndex = 1;
      // Align the image to the top left corner.
      label1->ImageAlign = ContentAlignment::TopLeft;
      
      // Specify that the text can display mnemonic characters.
      label1->UseMnemonic = true;
      // Set the text of the control and specify a mnemonic character.
      label1->Text = "First &Name:";
      
      /* Set the size of the control based on the PreferredHeight and PreferredWidth values. */
      label1->Size = System::Drawing::Size( label1->PreferredWidth, label1->PreferredHeight );
      
      //...Code to add the control to the form...
   }
public void CreateMyLabel()
{
   // Create an instance of a Label.
   Label label1 = new Label();

   // Set the border to a three-dimensional border.
   label1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
   // Set the ImageList to use for displaying an image.
   label1.ImageList = imageList1;
   // Use the second image in imageList1.
   label1.ImageIndex = 1;
   // Align the image to the top left corner.
   label1.ImageAlign = ContentAlignment.TopLeft;

   // Specify that the text can display mnemonic characters.
   label1.UseMnemonic = true;
   // Set the text of the control and specify a mnemonic character.
   label1.Text = "First &Name:";
   
   /* Set the size of the control based on the PreferredHeight and PreferredWidth values. */
   label1.Size = new Size (label1.PreferredWidth, label1.PreferredHeight);

   //...Code to add the control to the form...
}
Public Sub CreateMyLabel()
    ' Create an instance of a Label.
    Dim label1 As New Label()
       
    ' Set the border to a three-dimensional border.
    label1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
    ' Set the ImageList to use for displaying an image.
    label1.ImageList = imageList1
    ' Use the second image in imageList1.
    label1.ImageIndex = 1
    ' Align the image to the top left corner.
    label1.ImageAlign = ContentAlignment.TopLeft
     
    ' Specify that the text can display mnemonic characters.
    label1.UseMnemonic = True
    ' Set the text of the control and specify a mnemonic character.
    label1.Text = "First &Name:"
       
    ' Set the size of the control based on the PreferredHeight and PreferredWidth values. 
    label1.Size = New Size(label1.PreferredWidth, label1.PreferredHeight)

    '...Code to add the control to the form...
End Sub

注釈

プロパティが UseMnemonictrue設定され、 の プロパティLabelTextニーモニック文字 (アンパサンドの前の文字) が定義されている場合、Alt キーを押しながらニーモニック文字を押すと、タブ オーダーの の後Labelにある コントロールにフォーカスが設定されます。 このプロパティを使用すると、フォーム上のコントロールに適切なキーボード ナビゲーションを提供できます。

適用対象

こちらもご覧ください