iSeller Commerce
iSeller POS Retail
iSeller POS F&B
iSeller POS Express
Crosslight
WebUI
ClientUI
What's New
Download Trial
Web Solution
Mobile Solution
Enterprise Solution
Custom Development
Blog
Community
Latest Development Blogs
ForumPostTopic
Browse By Tag
You didn't anwer my actual question. The question had nothing to do with ToolTipText.
My question is pertaining to the initially displayed text in the Stack Grid. It displays the text "Stack Menu" until one hovers over a StackButton. I either want this to displaytext of MY chosing or nothing at all.
It doesn't seem that you've grasped the full scope of the issue. The button collection seems to be unmodifiable from any event or code after it has been loaded. NOT JUST A CLICK EVENT. For example, the following code demonstrates adding a StackButton on a 5 second delay. This will also crash the FishEye when the button is clicked.
public MainPage() { InitializeComponent(); AddStackButton(); AddStackButtonWithDelay(5); } private void AddStackButtonWithDelay(double delayDuration) { Storyboard toolbarDelay = new Storyboard() { BeginTime = TimeSpan.FromSeconds(delayDuration) }; toolbarDelay.Completed += (s, e) => AddStackButton(); toolbarDelay.Begin(); } private void AddStackButton() { WebFishEyeButton button = _MainToolbar.FindButton("cmdTools"); if (button.StackButtons == null) { button.StackButtons = new ObservableCollection<WebFishEyeStackButton>(); } string stackText = string.Format("StackButton{0}", _StackCounter++); WebFishEyeStackButton stackButton = new WebFishEyeStackButton(); stackButton.ItemName = stackText; stackButton.Text = stackText; stackButton.ImageSource = new BitmapImage(new Uri("Resources/toolbox.128.png", UriKind.Relative)); button.StackButtons.Add(stackButton); }
or
Choose this if you're already a member of Intersoft Community Forum. You can link your OpenID account to your existing Intersoft Social ID.
Choose this if you don't have an Intersoft account yet. Your authenticated OpenID will be automatically linked to your new Intersoft account.
Enter your Wordpress Blogname