Suddenly in the login section top menu there is a message stating "Your email needs to be confirmed". How to do this? I did not receive any mails and I don't find a way to confirm.
Vincent Beek
Posts
-
How to confirm email -
DataGrid won't detect CTRL + CThat's what I am trying to tell you. In your current code it is detected. When you press CTRL+C the grid row is being copied. The textbox is just for testing. After the copy you can past your grid row there and see for your self that a CRTL+C copy was made.
-
DataGrid won't detect CTRL + CYou are right that you won't get the
MessageBox
but it is handeling the copy command. Just add aTextBox
and perform a paste. So I think the event is set toe.Handled
before your event. -
WPF Datagrid PagingThis might help. http://www.telerik.com/products/wpf/datapager.aspx[^]
-
generating QR code in WPFFor example. Open Source QRCode Library[^] http://qrcodenet.codeplex.com/[^] I don't think that working with WPF has big impact on de code of generating QR code. It just some .net class/library that has to be integrated
-
Starter MVVM Framework RecommendationHave you heard about: Catel
-
Localization in WPF MVVMWhere is your
SelectedLanguage
property declaration? What does it look like? -
WPF with Entity Framework.Fur sure it will resolve all your questions but maybe this will be helpful. http://tomasp.net/blog/dynamic-linq-queries.aspx/[^]
-
adding/removing ListView columns at runtime (revisited)Some time ago I asked here the question how to code adding/removing columns to a Listview at runtime and 'binding columns to viewmodels' SeldgeHammer came with this solution: 1) The WPF ListView doesn't support data binding on the GridViewColumnCollection out of the box. You can add support for this, not too difficult, but a little bit of work. 2) Once you have a WPF ListView that can support data binding on the GridViewColumnCollection, its just a matter of having your VM return a collection of columns. 3) Some gotcha's you'll run into: a) a GridViewColumn can only be owned by one GridViewColumnCollection at a time, so you can't return a GridViewColumnCollection from your VM, you need to return an ObservableCollection. b) defining a GridViewColumn in code with bindings is a major PITA, so you should devise a way to load them out of a XAML file where you'll again run into "issue a" where you can't share GridViewColumn's. All these issues are overcomeable... basically what I ended up with was a GridViewEx class that supported two-way binding on the column collection. Remember, you are going to need to save column widths and column order . I wanted to share a blog on this topic that I ran into the other day. I quite like the solution provided there. Sharing info never hurts right? :) http://blogs.msdn.com/b/nathannesbit/archive/2009/03/13/developing-reusable-controls-with-the-model-view-viewmodel-pattern.aspx[^]
-
binding one listview to two observablecollectionsIs it by any means possible to bind a single listview to two seperate observable collections? So, for example the first column is from collection A and the second column from collection B. If so, how?
-
RoutedUICommands vs ICommand. When & WhyI am not a fan of just grabbing a framework
either. At least you have to know the concept of what is happening in there. Otherwise when you will run into bug of the framework you will get stuck.
I am now in the process of making this decision. I know MVVM is the way to go. But I think I will start with my own implementation to see before I get involved in a framework.Do you know this framework?
Catel - Part 0 of n: Why choose Catel?[^]It’s a relative newcomer. What do you think of it?
-
RoutedUICommands vs ICommand. When & Whybetter framework, like?
-
RoutedUICommands vs ICommand. When & WhyHm, make good sense to me. Thx. :thumbsup:
-
RoutedUICommands vs ICommand. When & WhyVery well, I agree that MVVM is a good pattern. But when not using RoutedUICommand class you loose the bubbling and tunneling, right? This wil not get me into problems?
-
RoutedUICommands vs ICommand. When & WhyHope the title is OK. Didn't know how to put it any better. I am looking here for some background information, opinions if you will. I know how to code them. But I can't get my head around why sometimes things are done one way and sometimes the other. If you read WPF books (mostly) they teach you to implement RoutedUICommands. So in short, to have a static class with commands, commandbindings in XAML and some codebehind. If you read some of the MVVM articles on this site or this article http://msdn.microsoft.com/en-us/magazine/dd419663.aspx[^]. They implement classes with ICommand interface and/or a RelayCommand : ICommand class and put some command handling in the ViewModel So, when and why, pros and cons, of using one or the other. This is what I hope to hear from you.
-
Generic framework or pattern for adding colomns to a WPF ListViewI had the feeling that BobJanova's answer was not very related, hence the 'investigating....' I didn't even notice we have a special WPF section. Guess I have been posting in the wrong section. Thanks again for all the input!
-
Generic framework or pattern for adding colomns to a WPF ListViewInvestigating this.... :cool: Thx.
-
Generic framework or pattern for adding colomns to a WPF ListViewI am looking for a framework or some site with a description of a possible direction of solution to speed up my development. My functional design shows a number of screens with WPF listviews on them. All of the screen have a add/remove column button next to each listview. Now adding A column to a listview at runtime is easy. But with the amount of listviews and even more the amount of possible columns to add (400 or so) hacking in code behind will be the next nightmare, I am not even talking about changes. So I am looking for a clean generic approach. Search the web but no results. Anybody here been in the same situation? And can push me a bit in the right direction? Oh MVVM ofcourse. Thx. Any help is appreciated