private bool addProxyToProject()
 {
     if (_designPane != null)
     {
         _designPane.Loader.NotifyChanges();
         _designPane.RefreshWebServiceToolbox(null);
         Dictionary <string, string> web = new Dictionary <string, string>();
         web.Add(XmlTags.XMLATT_filename, System.IO.Path.GetFileName(_proxy.ProxyFile));
         web.Add(XmlTags.XMLATT_asmxUrl, _proxy.AsmxUrl);
         web.Add(XmlTags.XMLATT_wsdl, System.IO.Path.GetFileName(textBoxWsdl.Text));
         web.Add(XmlTags.XMLATT_proxy, System.IO.Path.GetFileName(textBoxProxy.Text));
         _designPane.Project.AddWebService(web);
     }
     return(true);
 }