12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- using PDF_Master.Helper;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
- using System.Windows.Controls;
- using System.Windows.Data;
- using System.Windows.Documents;
- using System.Windows.Input;
- using System.Windows.Media;
- using System.Windows.Media.Imaging;
- using System.Windows.Shapes;
- namespace PDF_Master.Views.Dialog
- {
- /// <summary>
- /// PropertiesDialog.xaml 的交互逻辑
- /// </summary>
- public partial class PropertiesDialog : UserControl
- {
- public PropertiesDialog()
- {
- InitializeComponent();
- }
- private void BtnMiniSize_Click(object sender, RoutedEventArgs e)
- {
- System.Windows.SystemCommands.MinimizeWindow(Window.GetWindow(this));
- }
- private void BtnClose_Click(object sender, RoutedEventArgs e)
- {
- System.Windows.SystemCommands.CloseWindow(Window.GetWindow(this));
- }
- private void BtnReStore_Click(object sender, RoutedEventArgs e)
- {
- if (Window.GetWindow(this).WindowState == WindowState.Maximized)
- {
- System.Windows.SystemCommands.RestoreWindow(Window.GetWindow(this));
- }
- else
- {
- System.Windows.SystemCommands.MaximizeWindow(Window.GetWindow(this));
- }
- }
- private void TextBlock_PreviewMouseDown(object sender, MouseButtonEventArgs e)
- {
- var text = sender as TextBlock;
- if(!string.IsNullOrEmpty(text.Text)&&e.LeftButton == MouseButtonState.Pressed)
- {
- CommonHelper.ShowFileBrowser(text.Text);
- }
- }
- }
- }
|