예제 #1
0
파일: LocationBar.cs 프로젝트: roytam1/fx3
 protected void OnAddressBarModified(Object aSender, EventArgs aEa)
 {
     if (LocationBarModified != null)
     {
         LocationBarEventArgs lbea = new LocationBarEventArgs(mAddressBar.Text);
         LocationBarModified(this, lbea);
     }
 }
예제 #2
0
파일: LocationBar.cs 프로젝트: roytam1/fx3
 protected void FireLocationBarCommit()
 {
     if (LocationBarCommit != null)
     {
         LocationBarEventArgs lbea = new LocationBarEventArgs(mAddressBar.Text);
         LocationBarCommit(this, lbea);
     }
 }
        ///////////////////////////////////////////////////////////////////////////
        // Location Bar
        protected void OnLocationCommit(Object aSender, LocationBarEventArgs aLbea)
        {
            string url = ServiceManager.Bookmarks.ResolveKeyword(aLbea.Text);

            if (url == "")
            {
                url = aLbea.Text;
            }

            mUserTyped = false;
            LoadURL(url);
        }
 protected void OnLocationModified(Object aSender, LocationBarEventArgs aLbea)
 {
     mUserTyped = true;
 }
예제 #5
0
파일: LocationBar.cs 프로젝트: nfan/Jaxer
 protected void OnAddressBarModified(Object aSender, EventArgs aEa)
 {
     if (LocationBarModified != null)
       {
     LocationBarEventArgs lbea = new LocationBarEventArgs(mAddressBar.Text);
     LocationBarModified(this, lbea);
       }
 }
예제 #6
0
파일: LocationBar.cs 프로젝트: nfan/Jaxer
 protected void FireLocationBarCommit()
 {
     if (LocationBarCommit != null)
       {
     LocationBarEventArgs lbea = new LocationBarEventArgs(mAddressBar.Text);
     LocationBarCommit(this, lbea);
       }
 }
예제 #7
0
파일: browserwindow.cs 프로젝트: nfan/Jaxer
 protected void OnLocationModified(Object aSender, LocationBarEventArgs aLbea)
 {
     mUserTyped = true;
 }
예제 #8
0
파일: browserwindow.cs 프로젝트: nfan/Jaxer
        ///////////////////////////////////////////////////////////////////////////
        // Location Bar
        protected void OnLocationCommit(Object aSender, LocationBarEventArgs aLbea)
        {
            string url = ServiceManager.Bookmarks.ResolveKeyword(aLbea.Text);
              if (url == "")
            url = aLbea.Text;

              mUserTyped = false;
              LoadURL(url);
        }