Inheritance: System.EventArgs
Ejemplo n.º 1
0
        protected virtual void OnFind(HelpFindEventArgs e)
        {
            var ev = Find;

            if (ev != null)
            {
                ev(this, e);
            }
        }
Ejemplo n.º 2
0
 protected virtual void OnFind(HelpFindEventArgs e)
 {
     var ev = Find;
     if (ev != null)
         ev(this, e);
 }
Ejemplo n.º 3
0
        void _form_Find(object sender, HelpFindEventArgs e)
        {
            string text = e.Text.Trim();

            if (text.Length == 0)
                return;

            _form.NavigateTo(String.Format(
                "http://localhost:{0}/find?q={1}",
                GetServer().EndPoint.Port ,
                Uri.EscapeDataString(text)
            ));
        }