Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 120 results for
viewmodel
- Page 1
WPF-Bind EventSetter Handler to ViewModel
Programming
Software Development
11 Years Ago
by KushMishra
… `MyAgeCommand` as persently, I am unable to do that. My
ViewModel
is :- public DelegateCommand MyAgeCommand { get { if (_myAgeCommand == null) _myAgeCommand = new…
Re: WPF-Bind EventSetter Handler to ViewModel
Programming
Software Development
11 Years Ago
by KushMishra
Requesting all if anyone could please help me with this :)
Re: WPF-Bind EventSetter Handler to ViewModel
Programming
Software Development
11 Years Ago
by Ketsuekiame
No it is a bug. [This Hotfix should work](http://support.microsoft.com/kb/2464222) Unfortunately, it means that you need to include this hotfix with your application redist. Edit: Reading the bug report there is a workaround - Add the style as a dynamic resource reference or add it as a static resource to the xaml resource dictionary.
Re: WPF-Bind EventSetter Handler to ViewModel
Programming
Software Development
11 Years Ago
by KushMishra
Hi Ketsuekiame, thanks a lot for the reply. I see Microsoft mentioning that "*A NullReferenceException exception occurs when you run a .NET Framework 4.0-based WPF application* **that has events in a nested template**". However, I don't think I am using a nested template here, but still I am facing the same issue. I am not using any …
Re: WPF-Bind EventSetter Handler to ViewModel
Programming
Software Development
11 Years Ago
by KushMishra
Hi, I tried this approach but this one gave another exception stating..."'XAML Node Stream: Missing EndMember for 'MyWPFPracticeApp.Views.MyDataGridResearch.System.Windows.FrameworkElement.Resources' before EndObject.'" Here's my style :- <UserControl.Resources> <Style x:Key="MyAgeStyle" TargetType="…
Re: WPF-Bind EventSetter Handler to ViewModel
Programming
Software Development
11 Years Ago
by Ketsuekiame
Did you try cleaning the solution and doing a full rebuild? This might be an issue with cached build objects.
Re: WPF-Bind EventSetter Handler to ViewModel
Programming
Software Development
11 Years Ago
by KushMishra
Yes, I did but again facing the same issue.
Re: WPF-Bind EventSetter Handler to ViewModel
Programming
Software Development
11 Years Ago
by Ketsuekiame
Can you post the entire XAML? I think you're missing a `</resources>` tag somewhere.
Re: WPF-Bind EventSetter Handler to ViewModel
Programming
Software Development
11 Years Ago
by KushMishra
Sure, here it is... <UserControl x:Class="MyWPFPracticeApp.Views.MyDataGridResearch" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:mc="http://schemas.openxmlformats.org/…
Re: WPF-Bind EventSetter Handler to ViewModel
Programming
Software Development
11 Years Ago
by Ketsuekiame
The XAML seems valid and my IDE is happy enough with it. It may be one of your supporting resource libraries that's invalid. Where are you storing your style resources?
Re: WPF-Bind EventSetter Handler to ViewModel
Programming
Software Development
11 Years Ago
by KushMishra
I am not storing my styles anywhere and these are static resources which I am using inside this xaml only. Also, I am not using any external libraries other than `interactivity` and `interactions` and already tried removing the same. I didn't get what exactly the problem is. I guess there may be a problem with the `DelegateCommand` class but I am …
Re: WPF-Bind EventSetter Handler to ViewModel
Programming
Software Development
11 Years Ago
by Ketsuekiame
The error you have means that the XAML is missing a closing tag somewhere. Unfortunately, I couldn't compile your application because it couldn't find any of your resources. Your delegate command seems ok.
Re: WPF-Bind EventSetter Handler to ViewModel
Programming
Software Development
11 Years Ago
by KushMishra
Unfortunately I also cannot find any error in the closing of the tags here. Don't know how exactly should I proceed with this one...!!!
Re: WPF-Bind EventSetter Handler to ViewModel
Programming
Software Development
11 Years Ago
by KushMishra
Hey, I found a solution to this one (however not exactly using the EventSetter but an easy replacement though). Just used Interaction command and parameter to be passed in the main DataGrid. I know it is not a perfect solution to the EventSetter problem but I am sure its the other way round of solving this problem also :) <UserControl x:…
Re: WPF-Bind EventSetter Handler to ViewModel
Programming
Software Development
8 Years Ago
by Alex_45
It is simply not possible, because EventSetter is not inherited from DependencyObject, does not support DependencyProperties system and that's why can't apply bindings to own properties
Android Native - How to Inject Hilt ViewModels
Programming
Mobile Development
3 Years Ago
by dimitrilc
….d(TAG, "Fragment ${hashCode()} is created with
ViewModel
${fragmentViewModel.hashCode()} injected.") } override fun onCreateView( ….d(TAG, "Fragment ${hashCode()} is created with
ViewModel
${fragmentViewModel.hashCode()} injected.") } override fun onCreateView( …
Android Native - How to use UseCases
Programming
Mobile Development
3 Years Ago
by dimitrilc
…button.setOnClickListener { //Calls
ViewModel
function after button click mainActivityViewModel… next.item3 ) } } /* class MainActivityViewModel :
ViewModel
() { //Private mutable flow private val _stateFlow = MutableStateFlow…
Android Native - How to serve asynchronous data to ListAdapter
Programming
Mobile Development
2 Years Ago
by dimitrilc
… below. This is our program’s only **
ViewModel
**. class MainViewModel :
ViewModel
() { private val httpClient = DogService.INSTANCE …below. class MainActivity : AppCompatActivity() { private val
viewModel
by viewModels<MainViewModel>() //Re-usable request …
Android Native - Inject Coroutine Dispatchers Into ViewModels Using Hilt
Programming
Mobile Development
2 Years Ago
by dimitrilc
… @Inject constructor( private val ioDispatcher: CoroutineDispatcher ) :
ViewModel
() { // injected example init { viewModelScope.launch(ioDispatcher){…, @MainDispatcher private val mainDispatcher: CoroutineDispatcher ) :
ViewModel
() { ## Summary ## Congratulations, we have learned…
Rebinding Problem with Jquery knockout.js with MVC
Programming
Web Development
12 Years Ago
by vuyiswamb
… } alert("Done Retrieving Data"); if (
viewModel
== null ||
viewModel
== undefined) { alert("The
ViewModel
is null or Undefined"); alert("Done…
Razor MVC Binding Problem - only 1st item in list binds
Programming
Web Development
12 Years Ago
by john.gale.92102
…ActionResult 'id is quote.id Dim
viewModel
As New EmployeeCoverageViewModel(id) Return View(
viewModel
) End Function <HttpPost()>…;EditEmployeeCoverage", New With {.id =
viewModel
.quote.id}) End Function **
ViewModel
** Public Class EmployeeCoverageViewModel Public Property productTypes As…
Some general questions about using MVVM with WPF
Programming
Software Development
9 Years Ago
by zachattack05
… dataset is a Model, the
ViewModel
is where I lose all understanding. If the
ViewModel
interacts with the Model on behalf… the oportunity to inspect the data entered. Would the
ViewModel
just be a class with event handlers to validate data…of binding to a datasource, I bind to the
ViewModel
and the
ViewModel
sends the changes on to the Model... Am I…
KnockoutJS + facebook application
Programming
Web Development
12 Years Ago
by taylby
… to set the information for the user back into the
viewmodel
from the testAPI(); BorrowerViewModel.borrowerNumber = response.id; alert(… (which it does) and then sets the property on the
ViewModel
. `var BorrowerViewModel = function () { var self = this; self.firstName = …
Getting a concrete event from WP7 calendar
Programming
Software Development
12 Years Ago
by U133121337
… of the listbox control to the sample data DataContext = App.
ViewModel
; this.Loaded += new RoutedEventHandler(MainPage_Loaded); } // Load data for the…
Connecting Viewmodels in areas
Programming
Web Development
11 Years Ago
by sanksk
… 2) Javascript runtime error: XXXXViewModel is undefined. This
ViewModel
is a coffeescript. I have tried many solutions but … to area and which corresponds to the above mentioned
viewmodel
, outside the area to default area, everything works …my controller in area, the view which renders this
viewmodel
is not being generated on the webpage. For …
why use var?
Programming
Software Development
14 Years Ago
by johndoe444
…"Disco" }; // Create our view model var
viewModel
= new StoreIndexViewModel { NumberOfGenres = genres.Count(), Genres = genres }; return… View(
viewModel
); }[/CODE] Why was var genres and var
viewModel
instead of explicitly declaring their types?…
Binding WPF-MVVM Context
Programming
Software Development
14 Years Ago
by CrazyProgrammer
…, Could someone tell me how to bind a view to
viewmodel
, I cant seem to get it to work, could anybody… textbox, and bind it to the corresponding functions in a
viewmodel
, the view model is in an a seperate dll. Ive… seem to work out how to bind the view with
viewmodel
. Thanks in Advance :)
WPF-DataGrid and SubDataGrid using MVVM
Programming
Software Development
11 Years Ago
by KushMishra
…; xmlns:km="clr-namespace:WIMOProjectDemo.
ViewModel
" xmlns:prop="clr-namespace:…Data; using Microsoft.Practices.Prism.Commands; namespace WIMOProjectDemo.
ViewModel
{ public class CustomerManagementModuleVM : INotifyPropertyChanged { #region …
Re: C# WPF ComboBox with CheckBox
Programming
Software Development
11 Years Ago
by Ketsuekiame
… Add a namespace location for your
viewmodel
class eg. vm */> <…Window { public MultipleDatumFilterVM
ViewModel
= new MultipleDatumFilterVM(); public MyWindow() { IntialiseComponent(); DataContext =
ViewModel
; } ... } …
Re: Some general questions about using MVVM with WPF
Programming
Software Development
9 Years Ago
by ddanbe
…. [Article1](http://www.codeproject.com/Tips/784331/WPF-MVVM-Validation-
ViewModel
-using-IDataErrorInfo). [Article2](http://www.codeproject.com/Articles/98681/Validating…
1
2
3
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC