forked from idg10/prog-cs-8-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMergingObservables.xaml.cs
57 lines (49 loc) · 1.85 KB
/
MergingObservables.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
using System;
using System.Linq;
using System.Reactive;
using System.Reactive.Linq;
using System.Windows;
using System.Windows.Input;
namespace RxQueryOperators
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MergingObservables : Window
{
public MergingObservables()
{
InitializeComponent();
IObservable<EventPattern<MouseEventArgs>> downs =
Observable.FromEventPattern<MouseEventArgs>(
background, nameof(background.MouseDown));
IObservable<EventPattern<MouseEventArgs>> ups =
Observable.FromEventPattern<MouseEventArgs>(
background, nameof(background.MouseUp));
IObservable<EventPattern<MouseEventArgs>> allMoves =
Observable.FromEventPattern<MouseEventArgs>(
background, nameof(background.MouseMove));
IObservable<EventPattern<MouseEventArgs>> dragMoves =
from move in allMoves
where Mouse.Captured == background
select move;
IObservable<EventPattern<MouseEventArgs>> allDragPositionEvents =
Observable.Merge(downs, ups, dragMoves);
IObservable<Point> dragPositions =
from move in allDragPositionEvents
select move.EventArgs.GetPosition(background);
dragPositions.Subscribe(point => { line.Points.Add(point); });
}
private void OnBackgroundMouseDown(object sender, MouseButtonEventArgs e)
{
background.CaptureMouse();
}
private void OnBackgroundMouseUp(object sender, MouseButtonEventArgs e)
{
if (Mouse.Captured == background)
{
background.ReleaseMouseCapture();
}
}
}
}