-
Notifications
You must be signed in to change notification settings - Fork 1
/
MainWindow.xaml.cs
145 lines (124 loc) · 3.19 KB
/
MainWindow.xaml.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
using System;
using System.IO;
using System.Windows;
using System.Windows.Forms;
using System.Windows.Media.Imaging;
namespace ImageWatcher
{
public partial class MainWindow : Window
{
private FileSystemWatcher _watcher;
private string _filePath;
public MainWindow()
{
InitializeComponent();
}
private void StartWatching(string filePath)
{
_filePath = filePath;
var path = Path.GetDirectoryName(filePath);
var file = Path.GetFileName(filePath);
_watcher = new FileSystemWatcher(path, file);
_watcher.Changed += (sender, e) =>
{
this.Dispatcher.Invoke(new Action(() =>
{
LoadImage(_filePath);
}));
};
_watcher.EnableRaisingEvents = true;
}
private void UpdateWatcher(string filePath)
{
if (_watcher == null)
StartWatching(filePath);
_filePath = filePath;
var path = Path.GetDirectoryName(filePath);
var file = Path.GetFileName(filePath);
_watcher.Path = path;
_watcher.Filter = file;
}
private void UpdateStatus()
{
if (ImageBox.Source == null)
return;
var width = ImageBox.ActualWidth;
var bmp = ImageBox.Source as BitmapImage;
if (bmp != null)
{
var zoom = (int)(width / bmp.Width * 100);
StatusText.Text = $"{zoom}%";
}
}
private void LoadImage(string filePath)
{
if (!string.IsNullOrEmpty(filePath) && File.Exists(filePath))
{
try
{
// create the bitmap from a memory stream to avoid file locks
byte[] buffer = File.ReadAllBytes(filePath);
var ms = new MemoryStream(buffer);
var image = new BitmapImage();
image.BeginInit();
image.CacheOption = BitmapCacheOption.OnLoad;
image.StreamSource = ms;
image.EndInit();
image.Freeze();
// update the image and watcher
ImageBox.Source = image;
UpdateStatus();
UpdateWatcher(filePath);
}
catch
{
StatusText.Text = "Error Loading File";
}
}
}
private void ImageDrop(object sender, System.Windows.DragEventArgs e)
{
if (e.Data.GetDataPresent(System.Windows.DataFormats.FileDrop))
{
string[] files = e.Data.GetData(System.Windows.DataFormats.FileDrop) as string[];
if (files != null && files.Length > 0)
{
LoadImage(files[0]);
}
}
}
private void OpenBtnClick(object sender, RoutedEventArgs e)
{
OpenFileDialog dialog = new OpenFileDialog();
dialog.InitialDirectory = @"C:\";
dialog.Filter = "Image files(*.bmp;*.jpg;*.png)|*.bmp;*.jpg;*.png|All files (*.*)|*.*";
dialog.FilterIndex = 1;
dialog.Multiselect = false;
if (dialog.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
LoadImage(dialog.FileName);
}
}
private void FitButtonClick(object sender, RoutedEventArgs e)
{
if (ImageBox.Source == null)
return;
if (ImageBox.Stretch == System.Windows.Media.Stretch.None)
{
ImageBox.Stretch = System.Windows.Media.Stretch.Uniform;
FitButton.Content = "\ue98a";
SizeToContent = SizeToContent.Manual;
}
else
{
ImageBox.Stretch = System.Windows.Media.Stretch.None;
FitButton.Content = "\ue989";
SizeToContent = SizeToContent.WidthAndHeight;
}
}
private void ImageLayoutUpdated(object sender, EventArgs e)
{
UpdateStatus();
}
}
}