示例#1
0
        public static void ShowDialog(IPin iPin, IntPtr hwnd)
        {
            Debug.Assert(HasDialog(iPin));

            PropertyPage pp = new PropertyPage((ISpecifyPropertyPages)iPin, Pin.Name(iPin));

            pp.Show(hwnd);
        }
示例#2
0
        public static void ShowDialog(IPin iPin, IntPtr hwnd)
        {
            Debug.Assert(HasDialog(iPin));

            PropertyPage pp = new PropertyPage((ISpecifyPropertyPages)iPin, Pin.Name(iPin));
            pp.Show(hwnd);
        }
示例#3
0
        public static void ShowDialog(IBaseFilter iBF, IntPtr hwnd)
        {
            Debug.Assert(HasDialog(iBF));

            PropertyPage pp = new PropertyPage((ISpecifyPropertyPages)iBF, Filter.Name(iBF));
            pp.Show(hwnd);
        }