What is equivalent features of WPF in QtQuick? [closed] - wpf

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I am a WPF programmer. But i see some weakness on WPF (see this my replay). So i curious to research for QtQuick.
WPF has some great features such as:
Hardware accelerated
Animations and effects
Triggers( Trigger, DataTrigger, EventTrigger)
Resources
Templates
Commands
Binding
Good for MVVM Pattern
Geometries
Clip mask and Gradient and composing controls
Creating SilverLight version of application for web
What is equivalents of these features on QtQuick?

Related

What is CallBack in Silverlight ? how to achieve callback in silverlight mvvm? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have a doubt..
What is Callback? and how to implement Callback in Silverlight Mvvm and Get the Entity Values? Give me Some Code Samples also..
Here you can found what a Callback is.
In C# there are several ways to manage callbacks. I recommend you to start with BackgroundWorker.
Here you can find an example of it in Silverligh.
And here anexample of BackgroundWorker and MVVM.

Is it possible to create a program like Photoshop with C# WinForms? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
So I am wondering if, in term of performance, it's possible to create a graphic editor like Photoshop capable of handling bitmap graphics on layers (at least 25 layers). It also need to handle various type of brushes, copy paste graphics blocks, etc. Well, what Photoshop can do at the basic level.
Are WinForms capable of this without being slow? Or is WPF the only good alternative?
As Paint.Net uses Winforms it is possible. You can check out the source code from this fork of 3.36.7 (the last version where the source was released)

MVVM in Silverlight [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I know I'm MVVM in WPF I do not know how this Silverlight implementation layered on top tips to help me (I'd Entity Framwork for the model I use)
You will do MVVM same way as you do it in WPF. But since Silverlight runs on client - you can't use EF there. Your choices will be to use RIA Services OR buy something like DevForce. I'm using DevForce and it allows you to write pretty much same LINQ queries on a client.
The MVVM Light Toolkit is a great framework for implementing MVVM in WPF or Silverlight.

Is there a panorama control for WPF [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Everybody, is there a panorama control for WPF? If not, how can I make one.
You can download the WP7 Panorama control source code from here and convert it to WPF from Silverlight.

SImple WPF Example that describes DATA Binding and Validation [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I am New to WPF.
I want Simple WPF Application Example, that have some textboxes and validation(numeric range,Email) on it
If all the Validation are true then ok button will be enable otherwise disable
Detail Example will be Appreciated
Thank You
Please see WPF: simple TextBox data binding Do google before posting questions.There are lots of examples and tutorials out there
also
WPF Basic Data Binding FAQ

Resources