123456789101112131415161718192021222324252627282930 |
- using Prism.Mvvm;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Venus_MainPages.ViewModels
- {
- internal class OverViewModel : BindableBase
- {
- #region 私有字段
- private string m_Title;
- #endregion
- #region 属性
- public string Title
- {
- get { return m_Title; }
- set { SetProperty(ref m_Title, value); }
- }
- #endregion
- public OverViewModel()
- {
- Title = "主页";
- }
- }
- }
|