We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f9bc4d commit da71034Copy full SHA for da71034
PhotoTagger/MultiPhotoEdit.xaml.cs
@@ -12,17 +12,13 @@ public MultiPhotoEdit() {
12
InitializeComponent();
13
}
14
15
- private readonly MultiPhoto photos = new MultiPhoto() {
+ public MultiPhoto Photos {
16
+ get;
17
+ } = new MultiPhoto() {
18
PhotoSet = new ReadOnlyObservableCollection<Photo>(
19
new ObservableCollection<Photo>())
20
};
21
- public MultiPhoto Photos {
- get {
22
- return this.photos;
23
- }
24
25
-
26
public ReadOnlyObservableCollection<Photo> PhotoSet {
27
get {
28
return (ReadOnlyObservableCollection<Photo>)GetValue(
0 commit comments