MVVM in Silverlight [closed] - silverlight

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.

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.

How do I view a report in 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 10 years ago.
How do I view a report in WPF without a third party app?
VB.NET, Visual Studio 2010.
You can use dynamic reports without a 3rd party add-on, though if you are looking for rich features like PDF, excel export or just a good zoom or pagination engine you should use a third party solution.
Edit: My answer is a bit simplistic but without knowing the source of your data and the format you want to view it in, it is hard to be more specific.
I would start by looking into using a FlowDocument, see this MSDN Magazine article with some samples.

What is equivalent features of WPF in QtQuick? [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 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?

How to communicate data between wcf and 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 12 years ago.
How do communicate data between wcf and wpf using entity framework 4, mvvm light?
This question is too broad to answer fully in a single post. Start by going through the tutorials on MSDN
To use publish and consume a WCF service, you need to learn about the following things:
Service Contracts
Data Contracts
Bindings
Hosting a service
Consuming a service
There is plenty of information available on these topics via Google. If you get stuck on any point, post another question and someone should be able to help you.

What is the most cool feature of 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 12 years ago.
What is is in your opinion the most cool feature of WPF that one absolutely should view at.
Brushes. All painting is done by brushes, and all brush types are interchangeable. You want to paint your text with video? No Problem!
The dispatcher messaging architecture.
WPF Architecture
Build More Responsive Apps With The Dispatcher
Many things in WPF are over-engineered but I feel the way they designed this is genius.
Xaml, as verbose as it is.
And data binding -- there's room for improvement, but it's awesome even as it is.
Dependency Properties. Many of the most powerful WPF features are based on them.
DirectX backend, control templates.

Resources