Esempio n. 1
0
		void AddressBar_NodeClicked(object sender, BreadcrumbBarNodeClickedEventArgs e)
		{
			if (e.Node != null)
			{
				string fullurl = e.Node.Tag as string;
				if (string.IsNullOrEmpty(fullurl) || fullurl == AddressBar.FullUrl)
				{
					return;
				}
				BrowseToUrl(fullurl, true); 
			}
		}
Esempio n. 2
0
        protected void OnNodeClicked(BreadcrumbBarNodeClickedEventArgs e)
        {
            try
            {
                if (this.NodeClicked != null)
                {
                    this.NodeClicked(this, e);
                }
            }
            catch (System.Exception ex)
            {
				Logger.LogError(ex);
			}
        }