ここの初心者。VBの変数に基づくテキストを持つXAMLでボタンを作成したいと思います。私はVBで変数を設定しています
Dim ButtonName1="テスト"
ボタンのコンテンツにButtonName1を表示するにはどうすればよいですか?
とても簡単です。ボタンには、コード ビハインドで参照するために使用できる Name プロパティがあります。この例ではButton1
、文字列をボタンの Content プロパティに割り当てるだけでよいことに注意してください。
Xaml
<Button Content="Button" Height="23" HorizontalAlignment="Left" Margin="10,10,0,0" Name="Button1" VerticalAlignment="Top" Width="75" />
xaml.vb
Dim ButtonName1 = "Test"
Button1.Content = ButtonName1