MvvmCross is an open source mvvm framework using C# on Windows Phone, Xamarin.iOS (MonoTouch), Xamarin.Android (MonoDroid), WinRT for Windows 8 and WPF - with .Mac, Silverlight and Unity-3D on the way.
0
votes
1answer
10 views
xamarin support in Add Portable Class Library dialog
What are the steps required to make the two items available in the Add Portable Class Library dialog?
0
votes
1answer
7 views
Testing ViewModels in MVVMCorss
I have just started working with MVVMCross for a cross platform app and I am having a hard time figuring out how to test my ViewModels. I tried following the testing done in TwitterSearch and ran into ...
0
votes
1answer
16 views
Xamarin: Unable to add HotTuna.StarterPack
I am trying to install the MVVMCross.HotTuna.StarterPack on my Xamarin (Mac) Solution using the NuGet, but i ain't successful. The package was installed in the Xamarin.Android project successfully but ...
2
votes
1answer
21 views
Show view from non-view/viewmodel in mvvmcross
What is the correct way to open a View in mvvmcross from a non-view? From within a viewmodel we would use ShowViewModel<>(..).
Specifically we are responding to a push notification opening the app ...
0
votes
1answer
13 views
MvvmCross: How to pass Android context down to MvxCommand?
I have created a service interface:
public interface IMessageDialogService
{
void ShowDialog(object context,string title,string message,string buttonTitle);
}
I have implemented that interface ...
0
votes
0answers
22 views
MvvmCross: High level docs on entire architecture
MvvmCross is fantastic, but I think I need a lot more documentation to try to help me get the big picture of its architecture. I would like to see a list of all of the items that can be customized. ...
0
votes
2answers
15 views
MvvmCross: Android custom webview urls handlers
My Android application had some complex text with hyperlinks embedded inside. The easiest way for me to handle this was to just use an embedded WebView and detect hyperlink clicks to perform custom ...
0
votes
1answer
13 views
MvvmCross: Tips for mixing MvvmCross with normal techniques
I am trying to convert a mid-size application to use MvvmCross that is already developed using Xamarin for both iOS and Android, but using normal techniques. Is it possible to mix MvvmCross ...
1
vote
1answer
17 views
MvvmCross: Android Application attribute
When using MvvmCross for Android, where is the actual Application object normally used by Android? This object is not always needed unless you want to customize the tag in the manifest. Mono for ...
2
votes
1answer
36 views
Creating a PCL that targets Monodroid
I am looking at the shiny MVVMCross project, specifically the N+1 days of MVVMCross series, and I notice that @slodge creates a PCL that targets Mono for android and Monotouch (at 1:10).
I have ...
1
vote
1answer
36 views
MvvmCross: Application wide view model?
I am loving MvvmCross so far, but I am new to the MVVM technique. MVVM seems to center around the View and ViewModel and navigating between them. However, what about application-wide model items? ...
1
vote
1answer
17 views
MvxTrace output in WPF project
I'm not seeing any MvxTrace output in my WPF project. I'm using the default project template created by NuGet.
Is there anything special that must be done or is this a bug?
1
vote
1answer
34 views
MvvmCross: How to navigate to something besides a ViewModel?
What would I put in my MvxCommand to navigate to a simple URL? All mobile platforms have a mechanism to ask the OS for an Activity or ViewController that can display the contents of a URL. How would ...
0
votes
1answer
31 views
Xamarin: Using native libraries in MVVMCross
Building a cross platform app that utilizes a native C library (using P/Invoke) to send commands to a remote server, how can it be architected to suit the MVVMCross framework?
Thanks!
1
vote
1answer
13 views
Settings in MvvmCross Core assembly?
In porting my WPF MVVM app to MvvmCross, what would be the recommended approach for persistent user settings in the Core assembly? Currently I'm using Properties.Settings for this task. Ideally, I'd ...
0
votes
1answer
42 views
null reference exception in android view Visibility binding
I have an MvxListView with a few items.
Each item consists of 2 components, one is visible and the other is not (Gone).
The gone component visibility property is bound to a boolean property on the ...
3
votes
1answer
81 views
Xamarin: MVVMCross info
Adapting the MVVMCross framework in Xamarin crossplatform application development, we have PCL (containing Model and View Model) and View (for each platform) as in here.
a) Where does the ...
1
vote
1answer
77 views
Xamarin IDE and visualstudio for windows +Mvvmcross
I have some confusions About the IDE to use for MvvmCross
a) VisualStudio (VS) uses Xamrarin.iOS and Xamarin.Android plugin for iOS and Android development. But can we also use PCL(Portable Class ...
1
vote
1answer
35 views
Dynamic Binding UIWebView in MVVMCross
I'm trying to make a change to sample project Cirrious.Conference. In particular in the Touch View at SessionView class and at this class
...
1
vote
1answer
24 views
Mvvmcross tableviewcell binding error
I wrote a mvvmcross touch sample app, basically a rip of the CustomerManagement tutorial.
I have one customer in my CustomersListViewModel.
When I run the app I get the following error in the output ...
1
vote
2answers
26 views
ListBoxItem with ContextMenu item to Command
I'm using a ContextMenu from the Microsoft.Phone.Controls.Toolkit:
xmlns:toolkit="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls.Toolkit"
And want to delete a ListBoxItem ...
2
votes
5answers
84 views
Error installing MVVMCross from nuget into a PCL
When I try to install MvvmCross into a new PCL I receive an error. The console log is below:
Package Manager Console Host Version 2.5.40416.9020
Type 'get-help NuGet' to see all available NuGet ...
5
votes
3answers
145 views
MvvMCross 3.0.6 Nuget package installation issue
I am trying to install MVVMCross NuGet package using NuGet 2.5 version. I have added the mono android and touch file to Profile104 folder. Still I am getting following exception:
Attempting to ...
1
vote
1answer
35 views
Testing an MVVMCross application
I am working on my first MVVMCross application and I am trying to set up a good testing framework. I have looked at the testing Stuart is doing in his TwitterSearch app but I have found nothing that ...
1
vote
1answer
20 views
MvvmCross Reachability on Windows Phone
I'm trying to use Cirrious.MvvmCross.Plugins.Network.Reachability on Windows Phone 8. I have added the Network Plugin to my WP8 project and my core. The plugin bootstrapper has been added to the ...
1
vote
1answer
31 views
Custom types in Navigation parameters in v3
In v3 if I wanted to pass two objects to another viewmodel:
public class Dog
{
}
public class Cat
{
}
var dog = new Dog();
var cat = new Cat();
ShowViewModel<SomeViewModel>(new {Dog = dog, ...
2
votes
2answers
40 views
Non-PCL dependencies w/ MvvmCross
Our application has several dependencies that are not available as PCL libraries (e.g. RestSharp, Websocket4Net, Reactive Extensions), but are available for each platform we plan to target. What's ...
1
vote
2answers
40 views
Composite views in MvvmCross
I have a WPF MVVM application that I'd like to refactor to use MvvmCross to support a WPF and Mono for Android implementations.
Our application's views consists of:
A toolbar that is always visible ...
1
vote
1answer
33 views
Child containers in MvvmCross IoC
I have a WPF MVVM application that I'd like to refactor to use MvvmCross to support a WPF and Mono for Android implementations.
Currently we are using Unity 3.0 for dependency injection and rely on ...
3
votes
1answer
51 views
MvvmCross - Android: How to perform App initialization on Main Thread
I have an Android application using MvvmCross. The App launches via an MvxSplashScreenActivity as the main launcher and I provided a setup class deriving from MvxAndroidSetup.
It seems however that ...
2
votes
1answer
65 views
Best way to have single View/ViewModel/Xaml link to multiple Json resource files in MvvmCross
Inside my application I have many help pages, which all have a similar layout - header and bodytext.
The way I have it structured at the moment, for every single Help page I have a View, ViewModel, ...
2
votes
1answer
22 views
MvxSimpleIoCContainer and multiple concrete implementations
If I have interface IMvxScreen and multiple concrete classes that implement IMvxScreen, is it possible to resolve all implementations at once?
public MyClass(IScreen[] screens)
{
3
votes
2answers
68 views
MvvmCross assembly referenced from Cirrious.MvvmCross.dll could not be loaded: System
I'm trying to set up a MvvmCross application project and run unit tests against it (namely the view models in it). I'm using Xamarin Studio on OS X (v. 4.0.4, latest at the time of writing).
The ...
1
vote
3answers
65 views
Trouble with xamarin.ios/monotouch , mvvmcross and linking
I have an irritating issue, if I use Link SDK Assemblies only in xamarin studio I get an exception, if I use dont link the exception is not happening. I have located the issue to be part of an third ...
3
votes
1answer
63 views
MvvMCross Binding with format string
How can i add a format for a binding, that formats the bound value with string.Format or something similar? I saw in other threads, that you can pass a converterName.
Does a converter for this ...
0
votes
1answer
37 views
Image Caching from http sources
I've read in a post from December 1st 2012 at Slodge bloch that File and DownloadCache plugins could be used for downloading and caching images from http sources. I think that's what I need in the app ...
0
votes
1answer
27 views
Using MvvmCross in a web project
Is there a way or plans to target a web UI with MvvmCross?
I have done a lot of XAML and I was looking around the source code for a Cirrious.MvvmCross.Silverlight
If not, is there any reason that ...
2
votes
1answer
60 views
Storing App Settings in SQLite
I'm developing my first MvvmCross application. I'm trying to store app settings with SQLite but I'm getting some exceptions and I'm afraid I'm missing something. Hope somebody can guide me on using ...
1
vote
1answer
57 views
How do you bind a ViewModel to the Windows 8 Settings pane in MvvmCross?
I've been looking at MvvmCross for cross platform mobile development.
Since navigation of views is done by calling ShowViewModel<>(), how would you create the settings pane (which is a user ...
0
votes
1answer
47 views
Tab Fragments with MvvmCross
I'm working on an app that uses MonoTouch, MonoDroid, and MvvmCross. My app has a screen that has tabs. I need that screen to work on both Android and iOS devices. In looking at the tutorials, it ...
1
vote
1answer
46 views
Using MvxGridView in MvvmCross
What I want to do is s simple screen showing multiple items in a Grid. This can on android easily be archived using a GridView.
In MvvmCross I guess I have to use MvxGridView to archive the same.
...
0
votes
1answer
22 views
How to add a 3rd party Log framework ( log4net ) to mvvmcross?
I would like to use log4net in mvvmcross to replace MvxDebugTrace, but I don't want to change the core source code, is it possible ?
0
votes
1answer
38 views
MvvmCross and Xcode Storyboard
The storyboard xcode are supported in mvvmcross v3?
If yes, how? There is an example?
Thanks
0
votes
1answer
46 views
MvvmCross (v3): Is that wrong to (try to) use behaviours and storyboards in a multi-platform application?
i would like to know what is considered the best practice (or how other people would have solved this problem) in this scenario.
I'm trying to create a simple game with MvvmCross that will ...
2
votes
1answer
44 views
Detecting whether a ViewModel's associated View is showing/not showing
I have some ViewModels where I use a Service, which is quite bandwidth intensive. However this service is only required when viewing specific Views in the application.
In MvvmCross vNext I used the ...
1
vote
1answer
35 views
MvvmCross MvxHttpImageView error
I'm trying to bind a web image in a listview on Android, using Xamarin.Android and mvvmcross. I'm getting this error though.
MvxBind:Error: 7.13 View type not found - Mvx.MvxHttpImageView
...
0
votes
1answer
48 views
Start MvxActivity from normal Activity?
Particularly the Navigation between the Views over the ViewModels looks like that:
ShowViewModel<InfoViewModel>();
Or between normal Activities:
context.StartActivity(typeof(InfoActivity));
...
0
votes
0answers
63 views
How to use contextmenu for listview using mvvmcross?
I try to display a contextMenu with longClick action on an item in listView(Mvx.MvxBindableListView).
I tried something like this but it doesn't work (Nothing appear when longClicking)
Someone now how ...
1
vote
1answer
37 views
Dynamic list element in MvxDialogViewController
We have a dialog inheriting MvxDialogViewController containing two Sections - TheRadios and TheList.
In response to the user changing the radio within TheRadios, we repopulate TheList (in the view ...
1
vote
1answer
55 views
MvvmCross: Unit-testing services with plugins
I am creating a cross-platform project with MvvmCross v3 and Xamarin solution and i would like to create some unit-tests.
This seems a bit outdated, so i was trying to follow this and it worked as ...





