嗨我有一個讀取「True」的按鈕,當用戶按下它時,我希望它讀取「False」。我嘗試了以下,但它不起作用。有人可以幫忙嗎?由於在VB.net(Windows Phone 7)中動態更改按鈕的文本
Private Sub buttonTrue_Click(sender As System.Object, e As System.Windows.RoutedEventArgs) Handles buttonTrue.Click
buttonTrue.Content = "False"
XML的按鈕:
<Button Content="True" Grid.Row="1" Height="200" Margin="185,260,156,0" Name="buttonTrue" VerticalAlignment="Top" Background="Black" BorderThickness="3" BorderBrush="White" />
你能詳細說明「它不工作」嗎? – CodingGorilla 2012-04-19 13:23:42
當我按下按鈕時,默認文本(「True」)仍然顯示 – Matt9Atkins 2012-04-19 13:28:13
您可以從實際視圖中發佈一些XAML嗎?乍一看,你看起來應該可以正常工作。更新了 – CodingGorilla 2012-04-19 13:35:32