Dodaj pliki projektów.

This commit is contained in:
2025-10-31 12:50:24 +01:00
parent 06b6823bd9
commit 7173a37b29
169 changed files with 53145 additions and 0 deletions
@@ -0,0 +1,60 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
using System.Windows;
namespace Haftmittel
{
public class Obrazek : INotifyPropertyChanged
{
private bool _jest = false;
private List<Historia> _hist;
private string opis = string.Empty;
public bool Widoczny
{
get { return _jest; }
set
{
_jest = value;
OnPropertyChanged("Widoczny");
}
}
public string Opis
{
get { return opis; }
set
{
opis = value;
OnPropertyChanged("Opis");
}
}
public List<Historia> HistoriaObrazka
{
get { return _hist;}
set
{
_hist = value;
OnPropertyChanged("HistoriaObrazka");
}
}
#region Obsługa INotifyPropertyChanged
public event PropertyChangedEventHandler PropertyChanged;
protected void OnPropertyChanged(string name)
{
PropertyChangedEventHandler handler = PropertyChanged;
if (handler != null)
{
handler(this, new PropertyChangedEventArgs(name));
}
}
#endregion
}
}