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 9 years ago.
Is it possible to use google map API in windows metro style app using C# and XAML ?
It's very possible. Use JSON or REST Services entailed in the Google MAP API. With those you can do just about any platform. Please state what you've tried, and be more specific in the future.
Related
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 9 years ago.
I need a basic sample to know how I can record voice in metro application (C#)?
Search for MediaCapture API to find information about that.
MSDN MediaCapture class reference: http://msdn.microsoft.com/library/windows/apps/BR241124?cs-save-lang=1&cs-lang=csharp#code-snippet-1
There is a method called StartRecordToStreamAsync, which takes MediaEncodingProfile as a parameter. You can create a profile for MP3-only capture using MediaEncodingProfileCreateMp3() static method:
var profile = MediaEncodingProfileCreateMp3(AudioEncodingQuality.High)
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'm developing an app that supports two languages, user can change the language tapping a textblock in top/right of the screen, the language is saved into a global variable.
what's the best way to load that text for the correct language?
Thanks
I have found these links useful in the past when I used to develop for windows phone
http://msdn.microsoft.com/en-us/library/windows/apps/xaml/hh965328.aspx
and this
http://blogs.msdn.com/b/global_developer/archive/2011/01/18/start-building-an-international-application-for-wp-7-part-i.aspx
Hope it helps!
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 am not sure where I have to start to create .NET application (C#) to "Capture Live Video from various Video Devices."
Any clue?
There is a code project project that does what you are looking for using directx.
http://www.codeproject.com/Articles/7123/Capture-Live-Video-from-various-Video-Devices
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 developing an windows application where I want to add user based role to the form. But I am bit confused how to do in windows application?
You might want to consider using the SqlMemebershipProvider. You can use the ASP.NET Membership provider mechanism in Windows Forms Apps.
See this article for a walk-thorugh.
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'm looking for a set of library in C# that could help me develop a web based voice chat app. I would prefer to avoid using Flash or Silverlight if i can.
From searching the internet i found WebRTC, libjingle, FreeSwitch, Asterisk could possibly provide what i need, but none is written for C#.
Could someone point me to the right direction ?