SpellCheck for Windows Phone - c#

I'm using NetSpell.SpellChecker in my WindowsPhone 8.1 application, but when I compile the code I'm getting the following error:
The base3 class or interface 'System.CompoenentModer.Compoenent' in
assembly xxx referenced by type NetSpell.SpellChecker.Spelling could
not be resolved.
Does anyone have an idea how to solve it? Is NetSpell supported in Windows Phone apps?
If not, do you have any idea of how to implement spellcheck/auto correct in Windows Phone?

If you are using Windows Runtime to build apps for Windows Phone, the support is built in, use:
<TextBox IsSpellCheckEnabled="True" />
Unfortunatly this doesn't work in Windows Phone Silverlight applications.
And the NetSpell library doesn't seem to be compatible with Windows Phone, it is dependent on System.ComponentModel.Component, which according to the MSDN documentation is not supported on Windows Phone. I have yet to find another spell checker library. (NHunSpell also doesn't seem to work with Windows Phone)
If it is for your app, I would recommend writing the app as a Windows Phone Store app (Windows Runtime) and use the built in support instead.

Related

Converting Android App to Windows App using Xamarin

Can a Android Hybrid App with some plugins written in Java and others imported from Cordova, be made windows phone complaint using Xamarin ?
Is there any such feature in VS 2015 from which conversion of android app to windows be made possible without much rework. Please help.
No. Xamarin will not allow you to automatically convert an app from one platform to another.
Microsoft has announced Project Astoria as part of Windows 10. This will enable Android apps to run as Windows Universal apps.
Can a Android Hybrid App with some plugins written in Java and others
imported from Cordova, be made windows phone complaint using Xamarin ?
No you cannot.
There are two ways to port Java code to C#.
The first way is to port the code manually.
The second porting methodology is to try and automate the process by using a code converter.

How to Launch Built In Apps for Windows 8

So I am coming from Windows Phone Silverlight into the new Windows Phone runtime apps and Universal apps. I am attempting to build my first app after doing several of the tutorials from channel9. My question is, and maybe I am not googling this correctly, but how might I launch the built in apps in Windows 8 similar to Windows Phone 8 runtime? I've already built a sample using the runtime following http://msdn.microsoft.com/en-us/library/windows/apps/xaml/dn741261.aspx but what are the Uri Schemes for built in apps in Windows 8?

Using .NET library in Windows Phone 8.1 application

I want to create Windows Phone 8.1 application in C#. I have a commercial .NET library I need to use which, according to the documentation, is compatible with Windows and Windows Mobile operating systems. When I add a reference to this library in my project and compile, I receive the following error: Cannot find type System.Collections.CollectionBase in module mscorlib.dll.
Is there any way to use this library in Windows Phone 8.1 application?

Difference between Windows Phone Silverlight 8.1 and Windows Phone 8.1 development

I am working on Windows Phone development. For that I installed required SDK. I do create new project with Windows Phone 8.1, but gradually found that it don't support WCF service as we can not add service reference in assembly. After research I found that Windows Phone 8.1 doesn't support WCF services(refernce). Then I add new Silverlight Windows Phone 8.1 project and found that it support web service(Work Around). While development in Silverlight project I found that their is another difference between two type of project in syntax also, e.g. Navigation to another page,
Windows Phone 8.1 Silverlight support following syntax:
NavigationService.Navigate(new Uri(#"/SecondPage.xaml", UriKind.Relative));
where as Windows Phone 8.1 support(reference)
Frame.Navigate(typeof(SecondPage));
Now I am getting confuse with those type of project and unable to find those differences. Please help me out.
Silverlight navigates between pages using Uri that point to xaml
files.
Windows Phone Runtime (8.1 Store Apps) uses navigation with
pagetypes.
If your app is a Windows Phone Silverlight (8 or 8.1) App, you have to use the first approach for navigating between pages.
The other one simply isn't available to your project.
Windows Phone currently has multiple different application models available, which differ significantly. I know that can be quite confusing When looking for samples and guidance make sure the article you found is matching your app type (i.e. Silverlight).

Windows.UI.Xaml namespace is not been supported in visual studio 2012 for windows phone development

I am trying to use the namespace Windows.UI.Xaml; in visual studio 2012 for windows app development and it is not been supported. It is giving the error that Windows.UI does not contain Xaml but i have seen in sample code which i have downloaded from here
http://www.mediafire.com/download/d1yva79g1ml35vq/FacebookSample.rar
They are using the namespace Windows.UI.Xaml and no error is there.
Can anyone help me out to solve this problem.
Thanks in advance
I haven't looked at the code you provided but I assume it is not Windows Phone code. Windows.UI.Xaml is indeed not available for Windows Phone. It's not mentionend as a supported platform on MSDN anyway.
In Sharing XAML UI you can read more about the difference between Windows 8 UI controls and Windows Phone 8 UI controls. Bottom line: XAML on both platforms are not binary compatible.
You are refering to the Windows 8 Store Application,
Windows.UI.Xaml.dll is a type of DLL file comes with Windows 8.
Read this article on converting Windows Phone to Windows store and corresponding namespaces.
Converting to Windows 8 from Windows Phone
The solution that you gave is a Windows Store app sample. And that's the reason you are seeing Windows.UI.Xaml namespace. If you would make a Windows Phone solution, you won't find this .dll file or namespace.
The only practical thing related to Windows.UI.Xaml namespace which is seen in the sample code which would interoperate to Windows Phone is Visibility of XAML components. While you have Windows.UI.Xaml namespace in Windows Store apps, you have complementary System.Windows namespace in Windows Phone for toggling Visibility.

Categories

Resources