コード例 #1
0
		//Use this method to add an item that needs it's content loaded.
		public void Add(IContentOwner owner)
		{
			if (loadingInProgress)
				throw new InvalidOperationException("Loading has already started...");

			//store it in the list
			this.contentToLoad.Add(owner);
		}
コード例 #2
0
 public ZodiacDeterminantNavigationModel(IContentOwner contentOwner) : base(contentOwner)
 {
 }
コード例 #3
0
 protected BaseNavigationModel(IContentOwner contentOwner)
 {
     _contentOwner    = contentOwner;
     _viewsDictionary = new Dictionary <ViewType, INavigatable>();
 }
 public InitializationNavigationModel(IContentOwner contentOwner) : base(contentOwner)
 {
 }
コード例 #5
0
 public ViewNavigationModel(IContentOwner contentOwner) : base(contentOwner)
 {
 }
コード例 #6
0
		void IContentRegister.Remove(IContentOwner owner)
		{
			throw new NotSupportedException();
		}
コード例 #7
0
 public ListNavigationModel(IContentOwner contentOwner) : base(contentOwner)
 {
 }
コード例 #8
0
 void IContentRegister.Remove(IContentOwner owner)
 {
     throw new NotSupportedException();
 }
コード例 #9
0
 internal TasksNavigationModel(IContentOwner contentOwner) : base(contentOwner)
 {
 }
コード例 #10
0
 public ViewProcessDetailsNavigationModel(IContentOwner contentOwner) : base(contentOwner)
 {
 }
コード例 #11
0
 public AddEditPersonNavigationModel(IContentOwner contentOwner) : base(contentOwner)
 {
 }
コード例 #12
0
        //private readonly IContentOwner _contentOwner;//

        public AuthenticationNavigationModel(IContentOwner contentOwner) : base(contentOwner)
        {
            //this._contentOwner = _contentOwner;//
        }
コード例 #13
0
 public AuthenticationNavigationModel(IContentOwner contentOwner) : base(contentOwner)
 {
 }