示例#1
0
 public void CopyFrom(PresentationStateAttributes src)
 {
     if (src != null)
     {
         _instanceNumber          = src.InstanceNumber;
         _presentationLabel       = src.PresentationLabel;
         _presentationDescription = src.PresentationDescription;
         _presentationCreator     = src.PresentationCreator;
         _creationDate            = src.CreationDate;
         _creationTime            = src.CreationTime;
     }
 }
示例#2
0
 public PresentationStateAttributesDialog()
 {
     InitializeComponent();
     _presentation = new PresentationStateAttributes();
 }
示例#3
0
 private void PresentationStateAttributesDialog_Load(object sender, EventArgs e)
 {
     _presentationOriginal = new PresentationStateAttributes();
     _presentationOriginal.CopyFrom(_presentation);
     FillPresentationStateAttributesControls();
 }