Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am searching for a design pattern, open source platform or what can else use to develop widget for wpf applications. I need to develop a host application that could load predefined or custom widget and this widget could interact with host application or could communicate with other widgets. User could add new widget without quiting the application or unload. Something like web parts that are used in asp.net or SharePoint. I am searching about Add-ins and Extensibility in Net 4.0 but I am not sure is it the true thing.
http://msdn.microsoft.com/en-us/library/bb384200.aspx
This sounds like a perfect use case for MEF.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I would like to create an app to display a website in Android mobiles. I am been looking how to do it and I found Xamarin that uses C#. Somebody know any tutorial or web to learn how to do it?
You are looking for a webview inside an app which can easily be done using both the flavors of Xamarin and there are tutorials and samples available for both:
Using Xamarin.Forms
Tutorial: https://developer.xamarin.com/guides/xamarin-forms/user-interface/webview/
Github Sample: https://github.com/xamarin/xamarin-forms-samples/tree/master/WorkingWithWebview
Using Xamarin.Native
Tutorial: https://developer.xamarin.com/guides/android/user_interface/web_view/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I want to use voice activated commands on my website. I have already implemented it on win forms using System.Speech.Recognition. However can't manage to use it on web application. Example code snippet would be appreciated.
Can I use it with web service?
Yes it is possible to have voice activated commands on your website, but it'll probably be difficult to refactor you winforms code. There are many articles around, so I suggest you google around a little bit further. You have the choice: you can go for the server-side route or you can use client-side frameworks (or some hybrid approach).
Another option is to use the browser's built in Speech recognition capabilities. Chrome, for example, has this which can turn any input field into a speech-aware input field.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I've been looking around the web for ways to program a C# application that does general Bluetooth functionality. I'm trying to connect a BlueSMIRF so that a file can be transferred through a Windows desktop application. However, this seems to be one area where there aren't any real libraries or tutorials... most of the materials for Windows seem to be in C++. Am I missing something here or does Visual C# not include support for Bluetooth in its class libraries?
I found a library which is written in C# and supports Bluetooth-Communication: 32feet
I hope I could help!
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I want my WPF app to look like WinRT apps:
Are there any ready-made styles or controls available for WPF that lets us achieve this?
Take a look at MahApps.Metro
Apps like Github for Windows use / are based on it.
Another nice library for Metroesque-styling of WPF apps is Modern UI for WPF. Can be installed via NuGet or as a project template.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
I have an application which could easily be controlled by a bot over network or even on the local machine(which simuates keyboard and mouse e.g.).
I want to avoid this using a captcha. The source has to work without internet / has to be generated during runtime on the computer itself.
Is there any open-source project for this or can someone give me a code example or a link ?
I've found an article "Simple CAPTCHA, Create your own in C#" by Raymund Macaalay. It is for an ASP.NET app, but he generates a normal C# bitmap image using different random fonts in STEP2, so this should also work in your WinForms app.