private void ShowPropertyPage(DeviceEntry device)
 {
     if (device != null && device.Filter != null)
     {
         FilterGraphTools.ShowFilterPropertyPage(device.Filter, Handle);
     }
 }
示例#2
0
文件: GraphForm.cs 项目: x2v0/gep
        private void ShowPropertyPage(object sender, EventArgs e)
        {
            if (rightClickedFilter != null)
            {
                FilterGraphTools.ShowFilterPropertyPage(rightClickedFilter.BaseFilter, Handle);
                rightClickedFilter = null;
            }

            if (connectingPin != null)
            {
                connectingPin.ShowPropertyPage(Handle);
                connectingPin = null;
            }
        }