如何在不使用 WPF 控件的情况下写出按钮事件?

How to write out button event without using WPF controls?

标题中不知道怎么写,这是WPF visual basic中的。我想知道如何编写代码,以便在单击按钮时,tabcontrol 选择将为 = 1

这是我的主窗口 RightWindowCommands 中的内容:

 <Button Content="Information" Cursor="Hand" Click="InformationButton_OnClick"
                      ToolTip="View the information"
                      x:Name="InformationView"/>

但是,我没有使用 WPF 工具的按钮,因为这是一个 GUI,我必须将按钮放在 RightWindowCommands 上,我想知道如何编写代码以便 InformationButton_OnClick给我 tabControl.SelectedIndex = 1。请指导我写出这段代码

这是一个很好的onclick事件处理图片的例子,你可以把它改成数字而不是图片。

`AddHandler pic.Click, AddressOf pic_Click'

Private Sub pic_Click(ByVal sender As Object, ByVal e As EventArgs)
    Dim pic As PictureBox = DirectCast(sender, PictureBox)
    ' etc...
End Sub

来源:add on click event to picturebox vb.net