-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm sure it's something stupid, but I'm playing around with databinding. I have a checkbox and a label on a form. What I'm trying to do is simply bind the Content of the label to the checkbox's IsChecked value.
What I've done runs fine (no compilation errors and acts as expected), but if I touch…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I favour the vertical separation over the horizontal separation in VS2008 wpf designer.
But after deleting the .suo (fresh checkout, new project, etc.) this setting is gone.
Is there a way to tell visual studio to default to the vertical separation instead of the horizontal for wpf designer ?
I can…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I've got an idea for a nice WPF designer extension, but I can't find any information on how to interact with the WPF designer via an extension. Lots of info about the text editor, but none about the WPF designer.
Looking for any kind of info/links on the subject, thanks.
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I've created a generic lookless control with virtual property:
public abstract class TestControlBase<TValue> : Control
{
public static readonly DependencyProperty ValueProperty;
static TestControlBase()
{
ValueProperty = DependencyProperty.Register("Value", typeof(TValue)…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Why does the DataTemplate line break the WPF designer in Visual Studio 2008?
The program compiles and runs properly. The DataTemplate is applied as it should. However the entire DataTemplate block of code is underlined in red, and when I simply "build" the program without running, I get the error…
>>> More