Пример #1
0
        private string FindTip()
        {
            var tipEditor = new MetaEditor();

            try
            {
                return(tipEditor.GetInformation(SelectedItemPath));
            }
            catch
            {
                return(string.Empty);
            }
        }
Пример #2
0
        protected override void OnPropertyPageInitialised(SharpPropertySheet parent)
        {
            FileName = parent.SelectedItemPaths.First();
            var editor = new MetaEditor();

            try
            {
                textBox.Text = editor.GetInformation(FileName);
            }
            catch
            {
            }
        }