3
votes
2answers
189 views
How to propagate errors & exceptions that occur during WPF data binding?
Every so often I find that I have accidentally broken data binding in my application. Either by renaming a property and not renaming it in the XAML or by a property throwing an exception for some …
0
votes
1answer
49 views
What is the best way to implement the graphics for a selected item in a WPF user control?
I have implemented a few different WPF user controls. In doing so I have also implemented a few different ways of implementing the graphics for when an item is selected.
I want to find out …
1
vote
4answers
399 views
How to lookup and invoke a .Net TypeConverter for a particular type?
I would like to implement a general purpose runtime type conversion function that makes use .Net TypeConverters to do the conversion.
Does anyone know how to how to look up and invoke a T …
0
votes
1answer
137 views
How to derive a new class from DataTemplate and then use it in place of DataTemplate?
How do I derive a new class from DataTemplate and then use it in place of DataTemplate?
For example, in C#:
public class DerivedDataTemplate : DataTemplate
{
}
…
0
votes
2answers
126 views
Is there an easy way to embed a Javascript interpreter in a C# application?
Possible Duplicate:
Embedding JavaScript engine into .NET (C#) …
2
votes
1answer
237 views
How do I create a C# event handler that can be handled in IronPython?
How do I create a C# event handler that can be handled in IronPython?
Note that I am using IronPython 2.0.1. I am able to handle events from system classes with no problems (eg Window.KeyD …
1
vote
4answers
105 views
Is is possible to return an object or value from a Python script to the hosting application?
For example in Lua you can place the following line at the end of a script:
return <some-value/object>
The value/object that is returned can then be retrieve …
0
votes
3answers
216 views
How to dynamically populate a WPF grid using data binding?
I am looking for a way to populate a single grid using data bindings.
The way I do this at the moment is by using an ItemsControl where each item is represented as a Grid with the columns t …
0
votes
1answer
66 views
Why is the ScrollViewer ScrollChanged event only raised after a small delay following a call to ScrollToVerticalOffset/ScrollToHorizontalOffset?
I was working with ScrollViewer and I noticed that when calling ScrollToHorizontalOffset or ScrollToVerticalOffset that this appears to have a delayed effect in raising the ScrollChanged event. I …
0
votes
1answer
38 views
Is there a way to determine the width and height of a WPF Window before showing it?
I am trying to center a WPF Window on the current position of the mouse cursor. Getting the mouse coordinates is no problem, but I need to determine the width and height of the window in order to …
0
votes
How to propagate errors & exceptions that occur during WPF data binding?
After some procrastination I finally set about coding a solution to my original issue.
My solution uses a custom trace listener (originally suggested by John) that logs to an output window. …
2
votes
How do I create a C# event handler that can be handled in IronPython?
I figured it out.
The class needs to be public as well as the event.
eg
public class Foo
{
...
public event EventHandler Bar;
}
…
