コード例 #1
0
		public void RemovePicture (BildDaten RemoveableBildDaten)
			{
			ConnectedBildDaten.Remove(RemoveableBildDaten);
			RemoveableBildDaten.Parent = null;
			Titel = Titel.Replace(RemoveableBildDaten.BildName, "").Trim();
			BilderDataModell.SendPropertyChanged("GenerationAllowed");
			OnPropertyChanged("Titel");
			}
コード例 #2
0
		public void UnAssignPicture (BildDaten EntryToUnAssign)
			{
			InformationenSource RemoveSource = EntryToUnAssign.Parent;
			RemoveSource.RemovePicture (EntryToUnAssign);
			
			InputBilder.Insert(0, EntryToUnAssign);
			OnPropertyChanged("InputBilder");
			}
コード例 #3
0
		public void AddNewPicture (BildDaten NewBildDaten)
			{
			ConnectedBildDaten.Add (NewBildDaten);
			NewBildDaten.Parent = this;
			Titel = (Titel + " " + NewBildDaten.BildName).Trim();
			BilderDataModell.SendPropertyChanged("GenerationAllowed");
			OnPropertyChanged("Titel");
			}
コード例 #4
0
		public void AssignPicture(InformationenSource TargetSource, BildDaten EntryToAssign)
			{
			InputBilder.Remove (EntryToAssign);
			TargetSource.AddNewPicture (EntryToAssign);
			OnPropertyChanged("InputBilder");
			}