Ejemplo n.º 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
            }
        }
Ejemplo n.º 2
0
 public async Task Insert <T>(Exception exception, EntryProxy <T> Entry) where T : class
 {
     await __Insert(exception.ToString(), null, Entry.EntryId);
 }
Ejemplo n.º 3
0
 public async Task Insert <T>(string Message, EntryProxy <T> Entry) where T : class
 {
     await __Insert(Message, null, Entry.EntryId);
 }