Home
Products
FAQ
WordPress
Contact Us
Home
Products
FAQ
WordPress
Contact Us
menu
Search
Search Keyword:
Search
All words
Any words
Exact Phrase
Ordering:
Newest First
Oldest First
Most Popular
Alphabetical
Section/Category
Search Keyword
property
Total: 50 results found.
Display #
5
10
15
20
25
30
50
100
All
Page 3 of 3
41.
How can I ensure proper type conversion when using MvvmCross
(Knowledge base/Global)
... => v.
Property
).To(vm => vm.ViewModel
Property
).WithConversion("MyConverterName"); ``` Make sure the converter is registered with the name "MyConverterName" in the registry[1][9]. ## Handling Platform-Specific ...
42.
How can I use MvxNotifyTask to handle exceptions in MvvmCross
(Knowledge base/Global)
... exception occurs during the task execution. - Task State Notifications: It provides
property
-changed notifications for different task states (e.g., `IsNotCompleted`, `IsCompleted`, `IsSuccessfullyCompleted`, ...
43.
How can I use BaseViewModel classes for shared error handling in MvvmCross
(Knowledge base/Global)
... exceptions gracefully: ```csharp private MvxNotifyTask _myTaskNotifier; public MvxNotifyTask MyTaskNotifier { get => _myTaskNotifier; private set => Set
Property
(ref _myTaskNotifier, value); } public ...
44.
What are the best practices for handling ViewModel lifecycle events in MvvmCross
(Knowledge base/Global)
... which automatically manages the lifecycle of views and ViewModels. 6. Implement INotify
Property
Changed: - While MvvmCross's `MvxViewModel` base class already implements `INotify
Property
Changed`, ...
45.
How do I configure NLog with Microsoft.Extensions.Logging in MvvmCross
(Knowledge base/Global)
... file in Solution Explorer, select Properties, and set the Copy to Output Directory
property
to Copy always. Here's an example of what the `nlog.config` file might look like: ```xml ...
46.
How do I add handlers for exceptions in MvvmCross
(Knowledge base/Global)
... private set => Set
Property
(ref _myTaskNotifier, value); } private async Task MyMethodAsync() { await _someService.DoSomethingAsync(); } private void OnException(Exception ...
47.
What are the main features of the MvvmCross.Plugin.FieldBinding plugin
(Knowledge base/Global)
... The plugin supports the use of `INotifyChanged` for dynamic fields. This means that fields can notify the UI about changes, similar to how properties do with `INotify
Property
Changed`. This is achieved ...
48.
What changes are necessary for the new IoC container in MvvmCross 6
(Knowledge base/Global)
... makes it more consistent across the framework. ## Using the Default IoC Container The default IoC container in MvvmCross 6 is `MvxIoCContainer`. It supports constructor injection and
property
injection, ...
49.
What are the key differences in how MvvmCross and CSLA.net handle data binding
(Knowledge base/Global)
... v.Text).To(vm => vm.My
Property
)` to bind a view's text
property
to a ViewModel
property
[1][7]. - TargetBinding: To support more complex binding scenarios, especially `TwoWay` bindings, MvvmCross introduces ...
50.
Can you provide examples of successful projects using both MvvmCross and CSLA.net
(Knowledge base/Global)
... MyViewModel : ViewModelBase { private readonly IMyService _myService; public MyViewModel(IMyService myService) { _myService = myService; } // Example
property
bound ...
<<
Start
<
Prev
1
2
3
Next
>
End
>>