Tema: Re: Kaip sukurti iviki
Autorius: Jornada Del Muerto
Data: 2011-01-20 13:28:29
Kazkas tokio tada bus:

public event OnDoSomething;

public string Propertis 
{
    get 
    {
        return _PropercioAttribute;
    }
    set 
    {
        if(OnDoSomething!=null)
        {
            OnDoSomething(this, new EventArgs());
        }
        _PropercioAttribute = value;
    }
}