Exemplo n.º 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);
        }
Exemplo n.º 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);
        }
Exemplo n.º 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);
        }