TreeNodeMouseClickEventArgs Sınıf
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
ve NodeMouseDoubleClick olayları için NodeMouseClick veri sağlar.
public ref class TreeNodeMouseClickEventArgs : System::Windows::Forms::MouseEventArgs
public class TreeNodeMouseClickEventArgs : System.Windows.Forms.MouseEventArgs
type TreeNodeMouseClickEventArgs = class
inherit MouseEventArgs
Public Class TreeNodeMouseClickEventArgs
Inherits MouseEventArgs
- Devralma
Örnekler
Aşağıdaki kod örneği, olayın nasıl işlendiğini NodeMouseDoubleClick ve nasıl kullanılacağını TreeNodeMouseClickEventArgsgösterir. Bu örneği çalıştırmak için, kodu adlı treeView1
bir içeren TreeView windows formuna yapıştırın. Örneğin üzerinde çalıştığı sistemin dizininde c:\
bulunan dosyaların adlarıyla doldurun treeView1
ve olayını treeView1
bu örnekteki treeView1_NodeMouseDoubleClick
yöntemiyle ilişkilendirinNodeMouseDoubleClick.
// If a node is double-clicked, open the file indicated by the TreeNode.
private:
void InitialTreeView_NodeMouseDoubleClick(Object^ sender,
TreeNodeMouseClickEventArgs^ e)
{
try
{
// Look for a file extension.
if (e->Node->Text->Contains("."))
{
System::Diagnostics::Process::Start("c:\\" + e->Node->Text);
}
}
// If the file is not found, handle the exception and inform the user.
catch (System::ComponentModel::Win32Exception^)
{
MessageBox::Show("File not found.");
}
}
// If a node is double-clicked, open the file indicated by the TreeNode.
void treeView1_NodeMouseDoubleClick(object sender, TreeNodeMouseClickEventArgs e)
{
try
{
// Look for a file extension.
if (e.Node.Text.Contains("."))
System.Diagnostics.Process.Start(@"c:\" + e.Node.Text);
}
// If the file is not found, handle the exception and inform the user.
catch (System.ComponentModel.Win32Exception)
{
MessageBox.Show("File not found.");
}
}
' If a node is double-clicked, open the file indicated by the TreeNode.
Sub treeView1_NodeMouseDoubleClick(ByVal sender As Object, _
ByVal e As TreeNodeMouseClickEventArgs) _
Handles treeView1.NodeMouseDoubleClick
Try
' Look for a file extension, and open the file.
If e.Node.Text.Contains(".") Then
System.Diagnostics.Process.Start("c:\" + e.Node.Text)
End If
' If the file is not found, handle the exception and inform the user.
Catch
MessageBox.Show("File not found.")
End Try
End Sub
Oluşturucular
TreeNodeMouseClickEventArgs(TreeNode, MouseButtons, Int32, Int32, Int32) |
TreeNodeMouseClickEventArgs sınıfının yeni bir örneğini başlatır. |
Özellikler
Button |
Hangi fare düğmesine basıldığını alır. (Devralındığı yer: MouseEventArgs) |
Clicks |
Fare düğmesine basma ve serbest bırakılma sayısını alır. (Devralındığı yer: MouseEventArgs) |
Delta |
Fare tekerleğinin döndürdüğünü ve WHEEL_DELTA sabiti ile çarpıldığının imzalı sayısını alır. Kalıp, fare tekerleğinin bir çentiğidir. (Devralındığı yer: MouseEventArgs) |
Location |
Oluşturulan fare olayı sırasında farenin konumunu alır. (Devralındığı yer: MouseEventArgs) |
Node |
Tıklanan düğümü alır. |
X |
Oluşturulan fare olayı sırasında farenin x koordinatını alır. (Devralındığı yer: MouseEventArgs) |
Y |
Oluşturulan fare olayı sırasında farenin y koordinatını alır. (Devralındığı yer: MouseEventArgs) |
Yöntemler
Equals(Object) |
Belirtilen nesnenin geçerli nesneye eşit olup olmadığını belirler. (Devralındığı yer: Object) |
GetHashCode() |
Varsayılan karma işlevi işlevi görür. (Devralındığı yer: Object) |
GetType() |
Type Geçerli örneğini alır. (Devralındığı yer: Object) |
MemberwiseClone() |
Geçerli Objectöğesinin sığ bir kopyasını oluşturur. (Devralındığı yer: Object) |
ToString() |
Geçerli nesneyi temsil eden dizeyi döndürür. (Devralındığı yer: Object) |