예제 #1
0
        public EditTemplate(ProfileTemplate template, EditProfile form)
        {
            InitializeComponent();

            EditForm = form;
            Template = template;
        }
예제 #2
0
        public EditTemplate(ProfileTemplate template, EditProfile form)
        {
            InitializeComponent();

            EditForm = form;
            Template = template;
        }
예제 #3
0
        public PreviewTemplate(string html, EditProfile edit)
        {
            InitializeComponent();

            Profiles = edit.Profiles;
            EditForm = edit;
            Html     = html;
        }
예제 #4
0
        public PreviewTemplate(string html, EditProfile edit)
        {
            InitializeComponent();

            Profiles = edit.Profiles;
            EditForm = edit;
            Html = html;
        }
예제 #5
0
파일: ProfileView.cs 프로젝트: nandub/DeOps
        private void EditMenu_Click(object sender, EventArgs e)
        {
            EditProfile edit = new EditProfile(Profiles, this);

            edit.ShowDialog(this);
        }
예제 #6
0
 private void EditMenu_Click(object sender, EventArgs e)
 {
     EditProfile edit = new EditProfile(Profiles, this);
     edit.ShowDialog(this);
 }