Remove the Rotate icon in Syncfusion WinRT Diagram - xaml

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

Related

Xamarin forms customizable tabviews

Hello, how can i achieve this tab menu with FavTab transparent border (i don't know how to call it) in xamarin forms, using either xct <xct:tabview></xct:tabview>, sharpnado.tabs, paths, skiasharp (i don't know skia sharp much), i tried using xamarin community toolkit but i don't know how to craft the centered favtab in which it gives the transparent exactly like in the image, any help is appreciated. Thank you!
[![enter image description here][1]][1]
Yes, i was able to do it exactly as i want using Renderers like how mr. wizzyno gives here: Xamarin.Forms - Cradle FAB but make sure you modify the theme in your style to avoid the same mistake as mine. thanks for all your helps and mr wizzy for his help also
[1]: https://i.stack.imgur.com/q31xJ.png

What's the name of this component in AppKit?

I want to know the name of sidebar-like component below.
Screenshot of AirMail
Screenshot of Tweetbot
Both of them have same width and similar appearance, so I thought that the component is available in AppKit but I couldn't find it in documentation by myself.
I've googled about NSTabViewController and NSSplitViewController, but I don't think they are the answer I want.
If you have any idea, please tell me!
Airmail is using a subclass of NSTableView as you can see in the following screenshot showing Airmail and F-Script Anywhere side-by-side:
F-Script Anywhere is generally very useful for finding out which UI components an app is using. Another good alternative is the new Debug View Hierachy feature in Xcode. To use this, open any macOS project in Xcode, then attach the debugger to the app you would like to inspect (Debug - Attach to Process) and click the Debug View Hierarchy button.

How to create a bitmap cropping control in WinJS

I want to create controls that lets the user decide crop area of a bitmap, in the common way, having four corners on the image. I saw that there is a sample C# app in the Microsoft site for this - http://www.microsoft.com/en-us/showcase/details.aspx?uuid=bef08d57-fa4d-4d9c-9080-6ee55b8623c0
But I cannot figure out how to do this strictly WinJS. Do I need to create custom controls - if so how? Any sample code will help a great deal.
I have an example in my codeSHOW project. It's the demo called Rx Crop. It uses Reactive Extensions (which are awesome by the way), but if you didn't want that dependency you could probably just use the example to figure out how to do it without.
BTW, the codeSHOW project has a bug and a usability issue currently. I have an update in certification. For now, just make sure you select the Rx Crop demo on the home screen and then click See the Code. If you hit See the Code with no demo selected it will crash.
Do me a favor and rate the app. Thanks.

How to draw graphics object in windows 8 winRT

How i can draw hand free graphic objects in windows 8, like paint can. I implemented such things in windows phone with Inkpresenter. But in winRT it seems that no such items are present. So i decided to use WritablebitmapEX, but idont know hot to implement this in windows 8. No sample code present in the downloading site. please any one help me to solve this issue.
http://social.msdn.microsoft.com/Forums/en-US/winappswithcsharp/thread/282a211e-e3bf-4184-8868-40208aa596dd
there is a good quickstart page on the Microsoft Site
http://msdn.microsoft.com/en-us/library/windows/apps/xaml/hh974457.aspx

How can i design menu and title in 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.