Пример #1
0
        void ButtonSync_Click(object sender, RoutedEventArgs e)
        {
            ButtonLibrariesPopup.Close();

            ObjWebLibraries.DoSync();
            e.Handled = true;
        }
Пример #2
0
        void ButtonCreateIntranetLibrary_Click(object sender, RoutedEventArgs e)
        {
            ButtonLibrariesPopup.Close();

            IntranetLibraryChooserControl control = new IntranetLibraryChooserControl();

            control.Show();
        }
Пример #3
0
        void ButtonOpenLibrary_Click(object sender, RoutedEventArgs e)
        {
            ButtonLibrariesPopup.Close();

            WebLibraryDetail web_library_detail = WebLibraryPicker.PickWebLibrary();

            if (null != web_library_detail)
            {
                MainWindowServiceDispatcher.Instance.OpenLibrary(web_library_detail.library);
            }
            e.Handled = true;
        }
Пример #4
0
 void ButtonJoinBundleLibrary_Click(object sender, RoutedEventArgs e)
 {
     ButtonLibrariesPopup.Close();
     MainWindowServiceDispatcher.Instance.ShowBundleLibraryJoiningControl();
 }