How can i design menu and title in vb.net? - vb.net

I Would like to create my menu groups in my desktop application as the one shown in sample image. I would like to know which control is used for it? What extra works we need to do on it?
A reference to similar one is also welcome...
Thanks

CollapsiblePanel or Accordian or TaskPane.
Check out .Net 2.0 SDK Samples, specifically Technologies\WinForms\TaskPane.

Related

How to create custom popup in Xamarin.Forms

I want to create a custom popup like screencast.
Take a look on Rg.Plugins.Popup. It is quite popular open source project which you can use as a reference to learn.
P.S.: Please get familiar with https://stackoverflow.com/help/how-to-ask

Remove the Rotate icon in Syncfusion WinRT Diagram

Hi, I need to develop an WinRT app with XAML and I'm using Syncfusion's library for that. Whenever I click on a node the resizer appears along with the rotate icon. I removed all the QuickCommands but the rotate icon won't go away.
Please note that I am using the SfDiagram inside a custom control. Thanks
We are glad to announce that our Essential Studio 2015 Volume 1 is rolled out and is available for download under the following link:
http://www.syncfusion.com/forums/118723/essential-studio-2015-volume-1-final-release-v13-1-0-21-available-for-download
Feature Information:
Requirement: Remove the Rotate Icon from Node
We have provided support to achieve your requirement in our Essential Studio 2015 Volume 1.This requirement can be achieved by using SelectorConstraints property of ISelector. We have provided code snippet to represent this. Please refer to the following code snippet
Code Snippet:
(DiagramControl.SelectedItems as ISelector).SelectorConstraints = (DiagramControl.SelectedItems as ISelector).SelectorConstraints & ~SelectorConstraints.Rotator;
Here, DiagramControl is the instance of SfDiagram.
We thank you for your support and appreciate your patience in waiting for this release. Please get in touch with us if you would require any further assistance.
Regards,
Syncfusion Support Team

Reposistioning Icons in Windows Store apps

I'm using a set of icons inside my Windows Store App for some functionality, I want to code for rearranging according to user wish like how we see in Windows 8 Start Screen. I want guidance and some resources for it, Do you have any suggestions?
Check out JQuery's GridView. Like Nate said. There are apps in the store that demonstrates the gridview. See CodeShow app. It's made from Javascript though.

How to change image source in WP8 using C#?

I have an Image object created in XAML in my Windows Phone 8 project. I'd like to change the Source property in C#. How would I go about doing that? I've followed the code at https://stackoverflow.com/questions/5770527/imagebutton-change-source-property but had no success. BitmapImage does not seem to be valid for Windows Phone 8. Does anyone know the correct way to change image sources in C# for WP8? Thank you.
Well the solution ended up being something simple. I just needed to import the System.Windows.Media.Imaging namespace. I added
using System.Windows.Media.Imaging;
to the top of my file, which fixed the problem.

Silverlight 4 wait/spinner control

I'd like to implement a spinner control (something along these lines) in Silverlight 4 to display during pending operations. There are several examples on the web for Silverlight 3 but I'm either unable to compile them into my project or they just flat out display nothing. In addition I'm unable to find any examples specific to Silverlight 4.
Can someone please post a sample for Silverlight 4 or a link to one?
You can use the BusyIndicator.
How To Work With Silverlight BusyIndicator?
Custom Busyindicator style in Silverlight 4
I found a good example of a spinner control here. It's very simple and may not be ideal but it works perfect for my purposes. It's a XAML-only solution so it is very easy to port.
If you decide to use it, then I'd like to echo one of the commenters' suggestions that you change the <Grid> to a <Viewbox> so that the spinner will scale automatically.
I've put together a pure xaml spinner out of another example I've found ( see source ). It works on silverlight 4 and moonlight 4 too.
Pure XAML Spinner
Slightly nicer visual than the "rotate some rectangles" approach.