Ejemplo n.º 1
0
        protected virtual void OnShowSomething(CrawlViewEventArgs e)
        {
            var handler = ShowSomething;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Ejemplo n.º 2
0
        private void crawlView_ShowSomething(object sender, CrawlViewEventArgs e)
        {
            var instance = sender as ICrawlView;

            this.txtDetails.Lines = instance.GetDetails();
        }