Beispiel #1
0
        private void MnuSaveClick(object sender, EventArgs e)
        {
            IDocumentForm document = this.GetDocument();

            if (document != null)
            {
                try
                {
                    document.Save();
                }
                catch (Exception ex)
                {
                    Helper.Exceptions.Show(string.Format(Strings.FileErrorSave, document.GetTitle()), ex);
                }
            }
        }