blob: f1766741e933fd51a28d0c6615fd4bc3e84e0a5c (
plain)
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
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="ViewModelBase.cs" company="HandBrake Project (http://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
// A Base Class for the View Models which contains reusable code.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.ViewModels
{
using Caliburn.Micro;
using HandBrake.ApplicationServices.Services.Interfaces;
using HandBrakeWPF.ViewModels.Interfaces;
/// <summary>
/// A Base Class for the View Models which contains reusable code.
/// </summary>
public class ViewModelBase : Screen, IViewModelBase
{
#region Constants and Fields
/// <summary>
/// Backing Field to prevent the Load method being called more than once.
/// </summary>
private bool hasLoaded;
/// <summary>
/// The title.
/// </summary>
private string title;
#endregion
#region Constructors and Destructors
/// <summary>
/// Initializes a new instance of the <see cref="ViewModelBase"/> class.
/// </summary>
public ViewModelBase()
{
}
#endregion
#region Properties
/// <summary>
/// Gets or sets Details.
/// </summary>
public string Title
{
get
{
return this.title;
}
set
{
this.title = value;
this.NotifyOfPropertyChange("Title");
}
}
/// <summary>
/// Gets or sets WindowManager.
/// </summary>
public IWindowManager WindowManager { get; set; }
/// <summary>
/// Gets or sets UserSettingService.
/// </summary>
public IUserSettingService UserSettingService { get; set; }
#endregion
#region Public Methods
/// <summary>
/// Perform any Initialisation for this ViewModelBase.
/// </summary>
public void Load()
{
if (!this.hasLoaded)
{
this.hasLoaded = true;
// Initialise the ViewModels OnLoad method if it exists.
this.OnLoad();
}
}
/// <summary>
/// Load Method for the ViewModel
/// </summary>
public virtual void OnLoad()
{
// Impliment in the ViewModel to perform viewmodel specific code.
}
#endregion
}
}
|