Exemple #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);
        }
Exemple #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);
        }
Exemple #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);
        }