次の図は、私のプロジェクトの内容を示しています。ここでTextBox MainWindowのロードイベントが発生したときに発生するTextChangedイベント
あなたのテストのニーズのための私のプロジェクトコードです。
<Window x:Class="MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="150" Width="400">
<Grid>
<TextBox Name="TextBox1" Width="200" Height="30" HorizontalAlignment="Left" Background="Pink" />
<Button Name="Button1" Content="Button1" Width="125" Height="30" HorizontalAlignment="Right" IsEnabled="False" />
</Grid>
</Window>
...
Class MainWindow
Private Sub MainWindow_Loaded(sender As Object, e As System.Windows.RoutedEventArgs) Handles Me.Loaded
TextBox1.Text = "Hello"
End Sub
Private Sub TextBox1_TextChanged(sender As System.Object, e As System.Windows.Controls.TextChangedEventArgs) Handles TextBox1.TextChanged
Button1.IsEnabled = True
End Sub
End Class
私はTextBox1_TextChangedイベント上記のコードを実行するためMainWindow_Loadedイベントを解雇しました。
MainWindow_Loadedの後にTextBox1_TextChangedイベントを発生させる方法はありますか?