Hi,
I'm not sure of the right terminology which is probably why I can't find the feature I'm after. When you right click on the UltraLiveTileView the ApplicationBar pops up and you can select tiles (a little tick appears in the top right of the tile) - my definition of Group Edit Mode. To exit this mode you have to click once or twice on the UltraLiveTileView. Is there a way in code to switch out of this Group Edit Mode?
Kind regards,
Nathan
Hi Nathan,
You can programmatically cancel the Application Bar using the following code:
this.ultraLiveTileView1.PerformAction(Infragistics.Win.UltraWinLiveTileView.UltraLiveTileViewAction.HideApplicationBar);
Please try this out and let me know whether it works for you.
Hi Mike,
Thanks for the response but it doesn't seem to do what I need. If I right click on a tile then every left click on subsequent tiles will select them. You are also able to edit the Group name in this state. I want to be able to cancel this state from code and go back to being able to click the tile.
My app displays buttons in the Application Bar when you right click and select a tile. When you press one of these applicationbar buttons, the tile is still selected (got the tick) and the group name is still able to be edited. The applicationbar buttons will popup a screen for the user to edit some data. When they close that popup I don't want the tiles in that select state (with the ticks) or the group to be editable. I want the user to have the livetileview to go back to the state before it was right clicked.
I've attached screen shots to hopefully make it a little clearer.
You should be able to get the behavior you want by using the ExitCustomizeMode action in addition to HideApplicationBar. The code should look like this:
this.ultraLiveTileView1.PerformAction(.HideApplicationBar);this.ultraLiveTileView1.PerformAction(ExitCustomizeMode);
Please let me know if this is what you were looking for.
Perfect. Thanks Mike.