Reactive Extensions (Rx) in windows Phone Mango [closed] - c#

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
what is meant by Reactive Extensions(Rx). How its helps me to develop applications in windows phone mango?? Is it q framework or helper library? What is the role of this (Rx) in effective application development in WP. Mango. Can any one please suggest me some links to learn the technique,

have a look at this:
Rx-Reactive Programming for Windows Phone
and here you can find a lot of video here: Channel 9 Rx
Rx is a framework to help you programm and link async/event based behaviour inside your code using LINQ-expressions. It can really help you with all the events and async-calls you can do in WP7 and silverlight - give it a try.

I wrote a blog post about the use of Reactive Extensions. It might also be of interest.

Related

Is it possible to compile a C# program to run on an Android phone? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I have some basic code made in C#. Is it possible to compile it for Android with little to no code changes?
You would need to use something like Xamarin (formerly MonoTouch).
Yes, you can develop application for android!
Xamarin For Android - Not a free product, full functional trial is available.
Dot42 - Not free for commercial use.
You can use them!

How to use WinRT transitions for WPF 4 [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I'd like to use the new metro transitions (AddDeleteThemeTransition, ContentThemeTransition, ...), for my WPF 4 project.
Can I use a dll ? Where could I download it ?
WinRT/XAML is a different technology than WPF and none of its WinRT UI will work with WPF. Additionally these transitions seem to be using some different mechanism than regular Storyboards, so there is likely no way to just extract them to something that would work with WPF.
Your only option would be to implement something yourself and make it look good. Or alternatively give up support for Windows 7 and implement your application as a WinRT app for Windows 8.

WPF knowledge required before moving to MVVM [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I'm developping windows applications with WPF since 1 year .. I want to get started with MVVM pattern.
What are excatly all things I should get Hands-on to start MVVM pattern comfortably ?
(Any Interesting Links are Welcome)
Here's 2 instructional video links I usually give out that helped me get started:
http://blog.lab49.com/archives/2650
http://windowsclient.net/learn/video.aspx?v=315275
In the end you'll most likely migrate to one of the well built MVVM frameworks that do a lot of the dirty work for you like this one that I currently use:
http://caliburnmicro.codeplex.com/
It is important to first learn how to hand roll your own MVVM frameworks for your apps, then you can move on to one of the pre-built frameworks to save you a lot of time.
Try this :
http://www.codeproject.com/Articles/Josh-Smith

ASP.net/C# books to create realtime applications [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I want to create realtime applications using ASP.Net C#
Is there any .Net books you recommend which have topics on architecting and implementing event based/message based realtime systems?
Editted:
I don't mind if it you know of a book which is based on real time web systems and is not based on .Net but created for generic purposes. I want to understand the concepts too.
I have been programming on ASP.Net for 4/5 years so anything advanced will be preferred.
for .net try This Book its good and for asp.net try Microsoft® ASP.NET Internals
I can recommend this.
Pro ASP.NET 4 in C# 2010, Fourth Edition by Matthew MacDonald.
Check the table of content yourself to confirm whether it is useful to your need.
Table Of Content

C# USer Interface Books - Equivalent To CLR Via C# [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I need to teach myself Winforms and user interface programming and want a decent book that will go thoroughly into the ins and outs of how to accomplish things.
Can anyone suggest a good book?
I know C# pretty well and have messed about with Winforms in the designer before.
Thank you
I have a couple suggestions:
Programming Microsoft Windows Forms (A little dated but still worthwhile)
About Face 2.0: The Essentials of Interaction Design
Charles Petzold has written really good Windows UI development books.
http://www.charlespetzold.com/books.html
If you have to program in Winforms, then "Programming Microsoft Windows Forms" is probably your best bet. But if you want to use a more current technology (WPF), then you could use "Applications = Code + Markup
A Guide to the Microsoft Windows Presentation Foundation" from the same author

Categories