예제 #1
0
        private void mModuleTree_MouseDoubleClick(object sender, MouseButtonEventArgs e)
        {
            EntryProxy entry = mModuleTree.SelectedItem as EntryProxy;

            if (entry != null)
            {
                // Execute command for opening entry editor
            }
        }
예제 #2
0
 public async Task Insert <T>(Exception exception, EntryProxy <T> Entry) where T : class
 {
     await __Insert(exception.ToString(), null, Entry.EntryId);
 }
예제 #3
0
 public async Task Insert <T>(string Message, EntryProxy <T> Entry) where T : class
 {
     await __Insert(Message, null, Entry.EntryId);
 }