Exemplo n.º 1
0
        public virtual void OnPreviewReloaded()
        {
            ClientDatabaseEventHandler handler = PreviewReloaded;

            if (handler != null)
            {
                handler(this);
            }
        }
Exemplo n.º 2
0
        public virtual void OnModified()
        {
            ClientDatabaseEventHandler handler = Modified;

            if (handler != null)
            {
                handler(this);
            }
        }
Exemplo n.º 3
0
        public void OnReloaded()
        {
            ClientDatabaseEventHandler handler = Reloaded;

            if (handler != null)
            {
                handler(this);
            }
        }