forked from OutSystems/WebView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainWindowViewModel.cs
executable file
·100 lines (71 loc) · 2.96 KB
/
MainWindowViewModel.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
using System.ComponentModel;
using System.Reactive;
using ReactiveUI;
using WebViewControl;
namespace SampleWebView.Avalonia {
class MainWindowViewModel : ReactiveObject {
private string address;
private string currentAddress;
public MainWindowViewModel(WebView webview) {
Address = CurrentAddress = "http://www.google.com/";
NavigateCommand = ReactiveCommand.Create(() => {
CurrentAddress = Address;
});
ShowDevToolsCommand = ReactiveCommand.Create(() => {
webview.ShowDeveloperTools();
});
CutCommand = ReactiveCommand.Create(() => {
webview.EditCommands.Cut();
});
CopyCommand = ReactiveCommand.Create(() => {
webview.EditCommands.Copy();
});
PasteCommand = ReactiveCommand.Create(() => {
webview.EditCommands.Paste();
});
UndoCommand = ReactiveCommand.Create(() => {
webview.EditCommands.Undo();
});
RedoCommand = ReactiveCommand.Create(() => {
webview.EditCommands.Redo();
});
SelectAllCommand = ReactiveCommand.Create(() => {
webview.EditCommands.SelectAll();
});
DeleteCommand = ReactiveCommand.Create(() => {
webview.EditCommands.Delete();
});
BackCommand = ReactiveCommand.Create(() => {
webview.GoBack();
});
ForwardCommand = ReactiveCommand.Create(() => {
webview.GoForward();
});
PropertyChanged += OnPropertyChanged;
}
private void OnPropertyChanged(object sender, PropertyChangedEventArgs e) {
if (e.PropertyName == nameof(CurrentAddress)) {
Address = CurrentAddress;
}
}
public string Address {
get => address;
set => this.RaiseAndSetIfChanged(ref address, value);
}
public string CurrentAddress {
get => currentAddress;
set => this.RaiseAndSetIfChanged(ref currentAddress, value);
}
public ReactiveCommand<Unit, Unit> NavigateCommand { get; }
public ReactiveCommand<Unit, Unit> ShowDevToolsCommand { get; }
public ReactiveCommand<Unit, Unit> CutCommand { get; }
public ReactiveCommand<Unit, Unit> CopyCommand { get; }
public ReactiveCommand<Unit, Unit> PasteCommand { get; }
public ReactiveCommand<Unit, Unit> UndoCommand { get; }
public ReactiveCommand<Unit, Unit> RedoCommand { get; }
public ReactiveCommand<Unit, Unit> SelectAllCommand { get; }
public ReactiveCommand<Unit, Unit> DeleteCommand { get; }
public ReactiveCommand<Unit, Unit> BackCommand { get; }
public ReactiveCommand<Unit, Unit> ForwardCommand { get; }
}
}