| bio | website | rachel53461.wordpress.com |
|---|---|---|
| location | New York, United States | |
| age | 27 | |
| visits | member for | 3 years, 2 months |
| seen | 1 hour ago | |
| stats | profile views | 10,928 |
"The three chief virtues of a programmer are: Laziness, Impatience and Hubris." - Larry Wall
Laziness: I'm too lazy to do the same task repeatedly so write scripts to do that task for me. This makes people think I am intelligent.
Impatience: I'm too impatient to wait for my code to run so rewrite the code to improve performance. This makes people think I am a good programmer.
Hubris: When someone asks if I can do something I just say Yes, then go find out how to do it (Google!). This makes people think I can do anything.
Ultimately, it means I can make a career out of being Lazy, Impatient, and Hubristic(?).
|
17h |
awarded | Nice Question |
|
May 21 |
awarded | Notable Question |
|
May 20 |
awarded | Revival |
|
May 20 |
comment |
Brushes.White slows graphics demo down Do you get the same behavior with Brushes.Transparent? |
|
May 20 |
comment |
asynchronous loading data in wpf mvvm I find the Task Parallel Library to be the easiest way. |
|
May 20 |
awarded | Popular Question |
|
May 17 |
answered | Navigate properly between tab in a WPF MVVM application |
|
May 17 |
comment |
Navigate properly between tab in a WPF MVVM application Why are you hardcoding the DataContext into your UserControl instead of letting it get passed from the TabViewModels? That's probably the problem there... |
|
May 17 |
revised |
Getting Parent Element Width for Converter fixed code formatting to make it easier to read |
|
May 17 |
comment |
Resources on preventing MVVM from over firing commands and properties I don't know if this is related, but are you using RelayCommands or DelegateCommands? A RelayCommand will typically re-query it's CanExecute anytime any property raises a change notification, while a DelegateCommand usually needs to be specifically told when it should raise its CanExecute |
|
May 17 |
comment |
How to setup a grid as template for an Items control? The Grid AttachedProperties that @HighCore mentions would work for a dynamic number of rows, however it wouldn't work for the rest of what you're trying to do. See my answer below for more details why. :) |
|
May 17 |
answered | How to setup a grid as template for an Items control? |
|
May 16 |
comment |
Making a WPF Application Semi-Transparent @Zarathos The link I posted in my previous comment was a very simple ready-made example. |
|
May 16 |
comment |
Making a WPF Application Semi-Transparent Per this answer that is not possible because the default window uses an OS-dependent window chrome which can't be forced to have transparency in its client area. It's really not that hard to build your own window chrome though. |
|
May 16 |
comment |
Failed to create a 'Path' from the text '(RadButtonOnImage:RadButtonImage.Image)' @tofutim Perhaps you should post a new question with your problem, since it doesn't appear to be the same as this one? |
|
May 16 |
comment |
Navigate properly between tab in a WPF MVVM application Wait... is the DataContext you said is "not working" created by your UserControl? Your View layer redrawing should have no affect whatsoever on your ViewModel layer. Can you update your question with a simplified example of how your UserControl's look, and what DataContext is incorrect? |
|
May 16 |
comment |
Navigate properly between tab in a WPF MVVM application In that case, it sounds like having both SelectedItem and SelectedIndex is causing problems. Do you have the same problem when you only have one of those properties set? |
|
May 16 |
comment |
Navigate properly between tab in a WPF MVVM application That is how WPF templates work. If two items are getting drawn using the exact same template, WPF doesn't bother to generate a new template and only changes the DataContext behind it. You could try this code to overwrite a tab control so instead of unloading/reloading each tab when you change, it uses an existing ContentPresenter for the tab, but I'm not positive if that would work. |
|
May 16 |
comment |
Navigate properly between tab in a WPF MVVM application Also when you say "the new usercontrol is not load properly", what do you mean by that? If you change from one ExcelJob to another ExcelJob, WPF might not bother re-drawing the template, however it should change the DataContext behind the template, so anything bound should change. |
|
May 16 |
comment |
Navigate properly between tab in a WPF MVVM application The first thing I notice is that you have both the SelectedItem and SelectedIndex properties bound. Those both actually accomplish the same thing (set the selected item), and I've seen it cause problems when you set both properties at once. Just set one or the other. |