PropertyTabChangedEventArgs.NewTab Properti
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Mendapatkan yang baru PropertyTab dipilih.
public:
property System::Windows::Forms::Design::PropertyTab ^ NewTab { System::Windows::Forms::Design::PropertyTab ^ get(); };
public System.Windows.Forms.Design.PropertyTab NewTab { get; }
public System.Windows.Forms.Design.PropertyTab? NewTab { get; }
member this.NewTab : System.Windows.Forms.Design.PropertyTab
Public ReadOnly Property NewTab As PropertyTab
Nilai Properti
Yang baru dipilih PropertyTab.
Contoh
Contoh kode berikut menunjukkan penggunaan anggota ini. Dalam contoh, penanganan aktivitas melaporkan kemunculan PropertyGrid.PropertyTabChanged peristiwa. Laporan ini membantu Anda mempelajari kapan peristiwa terjadi dan dapat membantu Anda dalam penelusuran kesalahan. Untuk melaporkan beberapa peristiwa atau peristiwa yang sering terjadi, pertimbangkan untuk mengganti MessageBox.Show dengan Console.WriteLine atau menambahkan pesan ke multibaris TextBox.
Untuk menjalankan kode contoh, tempelkan ke dalam proyek yang berisi instans jenis PropertyGrid bernama PropertyGrid1
. Kemudian pastikan bahwa penanganan aktivitas dikaitkan dengan peristiwa.PropertyGrid.PropertyTabChanged
private void PropertyGrid1_PropertyTabChanged(Object sender, PropertyTabChangedEventArgs e) {
System.Text.StringBuilder messageBoxCS = new System.Text.StringBuilder();
messageBoxCS.AppendFormat("{0} = {1}", "OldTab", e.OldTab );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "NewTab", e.NewTab );
messageBoxCS.AppendLine();
MessageBox.Show(messageBoxCS.ToString(), "PropertyTabChanged Event" );
}
Private Sub PropertyGrid1_PropertyTabChanged(sender as Object, e as PropertyTabChangedEventArgs) _
Handles PropertyGrid1.PropertyTabChanged
Dim messageBoxVB as New System.Text.StringBuilder()
messageBoxVB.AppendFormat("{0} = {1}", "OldTab", e.OldTab)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "NewTab", e.NewTab)
messageBoxVB.AppendLine()
MessageBox.Show(messageBoxVB.ToString(),"PropertyTabChanged Event")
End Sub