コード例 #1
0
 public AuthorPanel()
 {
     InitializeComponent();
     WindowHelper.FullScreenWindowSettings(this, UserLabel, ConferenceLabel);
     articleCore = new ArticleCore();
     InitializeData();
 }
コード例 #2
0
 public ReviewerPanel()
 {
     InitializeComponent();
     WindowHelper.SmallWindowSettings(this);
     core = new ArticleCore();
     LoadData();
 }
コード例 #3
0
 public AssignAuthor(int articleId)
 {
     InitializeComponent();
     WindowHelper.SmallWindowSettings(this);
     authorCore     = new AuthorCore();
     authCore       = new AuthenticationCore();
     articleCore    = new ArticleCore();
     this.articleId = articleId;
 }
コード例 #4
0
 public ArticleDetails(ArticleDTO article)
 {
     InitializeComponent();
     WindowHelper.SmallWindowSettings(this);
     core           = new ArticleCore();
     presCore       = new PresentationCore();
     currentArticle = article;
     FillArticleBoxes();
 }
コード例 #5
0
 public PresentationSpecialSession(SpecialSessionDTO session)
 {
     InitializeComponent();
     WindowHelper.SmallWindowSettings(this);
     this.session = session;
     core         = new PresentationCore();
     articleCore  = new ArticleCore();
     FillSessionBoxes();
     LoadPresentations();
 }
コード例 #6
0
 public PresentationDetailsReadOnly(PresentationDTO presentation)
 {
     InitializeComponent();
     WindowHelper.SmallWindowSettings(this);
     authCore          = new AuthenticationCore();
     articleCore       = new ArticleCore();
     sessionCore       = new SessionCore();
     this.presentation = presentation;
     FillPresentationBoxes();
 }
コード例 #7
0
ファイル: MySessions.xaml.cs プロジェクト: 2644783865/ssd-cms
 public MySessions()
 {
     InitializeComponent();
     WindowHelper.SmallWindowSettings(this);
     core             = new SessionCore();
     articleCore      = new ArticleCore();
     presentationCore = new PresentationCore();
     confCore         = new ConferenceCore();
     InitializeGradeBox();
     LoadSessions();
 }
コード例 #8
0
 public SubmitArticle(ArticleDTO article)
 {
     InitializeComponent();
     WindowHelper.SmallWindowSettings(this);
     core        = new ArticleCore();
     sessionCore = new SessionCore();
     LoadSpecialSessions();
     currentArticle = article;
     if (article != null)
     {
         FillArticleBoxes();
     }
 }