コード例 #1
0
ファイル: PersonSelector.cs プロジェクト: feyris-tan/azusa
        public static Person DoSelection(Form parent, Family f)
        {
            PersonSelector ps = new PersonSelector(f);

            ps.ShowDialog(parent);
            return(ps.result);
        }
コード例 #2
0
ファイル: PersonSelector.cs プロジェクト: feyris-tan/azusa
        public static Person DoSelection(Form parent, Gender g)
        {
            PersonSelector ps = new PersonSelector(g);

            ps.ShowDialog(parent);
            return(ps.result);
        }
コード例 #3
0
ファイル: PersonSelector.cs プロジェクト: feyris-tan/azusa
        public static Person DoSelection(System.Windows.Forms.Control parent)
        {
            PersonSelector ps = new PersonSelector();

            ps.ShowDialog(parent);
            return(ps.result);
        }