Code Sharing between WPF Windows,WindowsPhone and Windows Store Applications [closed] - c#

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
We have planned to develop an application for the platforms
WPF Desktop,
Windows Phone and
Windows store.I want to share C# code and Xaml design between these platforms.I know that it is not possible to share the whole set of codes.Experts please guide me.Which frame work(MVC,MVVM,etc.)I have to develop?And how much possibilities are there for sharing?

For your c# business logic code use the Portable Class Library project in Visual Studio 2012 it supports the cross-platform development of .NET Framework apps. You can build portable assemblies that work on multiple platforms (Windows 7, Windows 8, Silverlight, Windows Phone, Xbox 360).

Related

C# UWP RDP Client [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
How can I implement RDP client in UWP?
I checked the MS samples and I don't see any practical implementation of RDP with UWP.
Is this possible? With WinForms and WPF it as possible but I can't find any sample for UWP.
As far as I know, this is not possible in pure UWP apps.
However, you could try building the app as a WPF app, add modern UI using XAML Islands and then package the app to publish it as an UWP app on the Microsoft Store using the Desktop Bridge.

creating Linux app from existing wpf program using xamarin [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I'm having a program created in wpf (using MVVM pattern) and I want this to work in linux too. I read about xamarin but couldn't find any tutorial how to implement such thing. Can anyone explain if it is even possible to somehow use my existing program with xamarin (in visual studio) and run it on Linux? And if so, how should I do this?
Thanks :)
You don't need Xamarin to develop a Linux desktop application using C#. With MonoDevelop (Xamarin Studio was originally forked from this project) you can develop GTK# applications that could be suited for your needs.
The problem with WPF is that Mono (the open source implementation of .NET) is only a subset of .NET and doesn't have any implementation for WPF, nor does it have any plans to implement it.
So the takeaway from this is that you can still reuse almost all of the core code from your existing application but to make it run on Linux you'll have to rework the UI layer.

Best way to design an architecture for an online web, android, windows and ios application in .Net [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
My requirement is to design an software architecture for an online application, which will be hosted on web (both desktop and mobile browser), windows phone, android and iOS. So please suggest me a design in which most of the part can be used commonly to support all these client APIs. I want to develop this in .Net technologies.
I can suggest you technologies:
ASP.NET MVC
Web API
Bootstrap - for layout design
AngularJS/Knockout
Rest up to you.........

Port windows phone 8.1 app to android [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
Is it possible to port my windows phone 8.1 (universal) app to Android? without using Xamarin.
thanks
You can't. There is not such thing that converts one os native app into other os nativ app. You can write for example in phonegap to support many os with same code, but this is other approach. I think if you manage to write such a system that can covert one native app into another you will be rich man.

Win Store Apps using Asp.Net [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I was going through Win store apps and came to know that you can use HTML5 and CSS3.
A quick question (might be silly), can we build Win 8 Apps using Asp.Net (or MVC)? If yes, how can we target our output to Win 8 App output instead of browser?
Thanks
Good question, but such an option isn't available. If you think it through, it'd be significant engineering work. ASP.NET is designed to run on a server and dynamically adapt to the host browser. To target an app output would mean running the ASP.NET code as part of the compilation process to get app-specific HTML, CSS, and JavaScript. In addition, ASP.NET would have to be extended to provide access to WinRT APIs, but those are client APIs and not server-side APIs.

Categories

Resources