Exemplo n.º 1
0
 private void _control_dataGridViewTags_CurrentCellDirtyStateChanged(object sender, EventArgs e)
 {
     if (PrimaryFile != null)
     {
         PrimaryFile.MakeDirty();
     }
 }
Exemplo n.º 2
0
 void TextChanged(object source, EventArgs e)
 {
     if (PrimaryFile != null)
     {
         PrimaryFile.MakeDirty();
     }
 }
Exemplo n.º 3
0
 void DocumentChanged(object sender, EventArgs e)
 {
     if (PrimaryFile != null)
     {
         PrimaryFile.MakeDirty();
     }
 }
Exemplo n.º 4
0
 private void DataChanged(object sender, EventArgs e)
 {
     if (PrimaryFile != null)
     {
         PrimaryFile.MakeDirty();
     }
 }
Exemplo n.º 5
0
 void DocumentChanged(object sender, EventArgs e)
 {
     if (PrimaryFile != null)
     {
         PrimaryFile.MakeDirty();
     }
     CommandManager.InvalidateRequerySuggested();
 }
Exemplo n.º 6
0
 void DocumentChanged(object sender, EventArgs e)
 {
     if (PrimaryFile != null)
     {
         PrimaryFile.MakeDirty();
     }
     SD.WinForms.InvalidateCommands();
 }
Exemplo n.º 7
0
 public OutputFile(PrimaryFile pf, string compareResult)
 {
     this.FUNDCODE     = pf.FUNDCODE;
     this.ISIN         = pf.ISIN;
     this.CUSIP        = pf.CUSIP;
     this.SEDOL        = pf.SEDOL;
     this.BASKETSHARES = pf.BASKETSHARES;
     this.CURRENCYCODE = pf.CURRENCYCODE;
     this.CIL          = pf.CIL;
     this.TRADECOUNTRY = pf.TRADECOUNTRY;
     this.COMPARE      = compareResult;
 }
Exemplo n.º 8
0
        public override void Load(OpenedFile file, Stream stream)
        {
            TitleName = Path.GetFileName(file.FileName);

            _control.Load(stream);
            _control.DataChanged += delegate
            {
                if (PrimaryFile != null)
                {
                    PrimaryFile.MakeDirty();
                }
            };
        }
 void SetDirty(object sender, EventArgs e)
 {
     PrimaryFile.MakeDirty();
     SD.WinForms.InvalidateCommands();
 }
 void editor_IconWasEdited(object sender, EventArgs e)
 {
     PrimaryFile.MakeDirty();
 }
Exemplo n.º 11
0
 void MakeDirty()
 {
     hasUnmergedChanges = true;
     PrimaryFile.MakeDirty();
 }
 void SetDirty(object sender, EventArgs e)
 {
     PrimaryFile.MakeDirty();
 }