C# UWP RDP Client [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 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.

Related

Using WinRT component in .NET core application [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 2 years ago.
Improve this question
Is it possible to use a WinRT component in a .NET Core 3 application?
Found a solution: registration-free WinRT.
For anyone reading this please see the following articles:
Enhancing Non-packaged Desktop Apps using Windows Runtime Components
Identity, Registration and Activation of Non-packaged Win32 Apps
There is also this repo with an example.

How to convert my finished app? [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 5 years ago.
Improve this question
I would like to know how i can convert finished application created in Universal Windows Platform to Android? Can i convert code ? Or is this doing with any applications? Thank you
There is no automated tool for this. Assuming your UWP app was created with C# and XAML you could look at using Xamarin.Forms to create an app that works on both platforms and is based on your current app.
Sorry, a full guide on how to do this is beyond a simple answer here and out of scope for this site.

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.

How to set time expiry to windows application in c#? [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 am a novice software developer and I am building desktop applications using C#. I want to make my applications expire and generate a license file to activate the application after it expires. Meaning I want to include a time bomb to all my applications and detonate it by using the generated license file.
There are many ways to achieve this - the .NET-Way is described here in this MSDN-Article:
How to: License Components and Controls
If you are developing a windows 8 app and you want to find out a way to create a trial version of your app then I think the following article does a pretty good job of explaining how to do it.
http://msdn.microsoft.com/en-us/library/windows/apps/hh694065.aspx

Code Sharing between WPF Windows,WindowsPhone and Windows Store Applications [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
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).

Categories

Resources