public static void ShowDialog(IPin iPin, IntPtr hwnd) { Debug.Assert(HasDialog(iPin)); PropertyPage pp = new PropertyPage((ISpecifyPropertyPages)iPin, Pin.Name(iPin)); pp.Show(hwnd); }
public static void ShowDialog(IBaseFilter iBF, IntPtr hwnd) { Debug.Assert(HasDialog(iBF)); PropertyPage pp = new PropertyPage((ISpecifyPropertyPages)iBF, Filter.Name(iBF)); pp.Show(hwnd); }