2013-07-19 70 views
1

我正在創建一個插件,我需要知道儲層孔隙度的值。如果這些屬性存在某處,那麼如果我可以訪問它們就會容易得多。 那麼我們如何使用「放下目標按鈕」來取這些值呢?如何使用droptarget取得物業價值?

回答

1

您必須訂閱DropTarget.DragDrop事件。以下回調方法向您展示瞭如何讓對象落在DropTarget按鈕上。

void DropTarget_DragDrop(object sender, DragEventArgs e) 
{ 
    Property property = e.Data.GetData(typeof(object)) as Property; 
    if (property == null) 
     return; 

    // Do something with property, like show it in a 
    // PresentationBox or store it for use later. 
} 
+0

我應該使用什麼類別來訪問原始氣體(OGIP)的價值? – user2599342