コード例 #1
0
ファイル: Pins.cs プロジェクト: lamost710/videoconference
        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
ファイル: Pins.cs プロジェクト: JayBeavers/WPF-MediaKit
        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
ファイル: Filters.cs プロジェクト: psyCHOder/conferencexp
        public static void ShowDialog(IBaseFilter iBF, IntPtr hwnd)
        {
            Debug.Assert(HasDialog(iBF));

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