8
votes
How to speed up WPF programs?
How do you speed up WPF?
Often after using one of the following profiling tools it is obvious what is causing my bottlenecks.
If memory is the issue then I virtualize m …
3
votes
Using WPF Validation rules and disabling a ‘Save’ button
You want to use Validation.HasError attached property.
Along the same l …
5
votes
WPF: How to apply a GeneralTransform to a Geometry data and return the new geometry?
You could try and use Geometry.Combine. It applies a transform during the combine. One catch is that Combine only works if your Geometry has area, so single lines will not work.
Here is a s …
2
votes
How do you bind the TextWrapping property of a TextBox to the IsChecked value of a MenuItem?
If you want to do this all in xaml you need to use a Style and a …
3
votes
MouseOver highlighting style returning to default after a second (Caused by Aero?)
The problem is indeed due to the default template for the ComboBox. If you use Reflector to open the PresentationFramework.A …
0
votes
How to bind from a ContentTemplate to the surrounding custom Control?
What appears to be the problem is that you are using a ContentTemplate without actualy using the content property. The default DataContext for the ContentTemplate's DataTemplate is the Content prop …
3
votes
WPF CommandParameter Binding Problem
InitializeCompenent processes the xaml associated with the file. It is at this point in time that the CommandParameter binding is first processed. If you initialize your field before InitializeComp …
3
votes
When can I dispose an IDisposable WPF control e.g. WindowsFormsHost?
In the case of application shutdown there is nothing you need to do to properly dispose of the WindowsFormsHost. Since it derives from HwndHost disposing is handled when the Dispatcher is shutdown. …
3
votes
Binding a DynamicResource
Sounds to me like what you really want is a CompositeCollection and to setup a Data …
4
votes
Exposing Multiple Databinding sources
I would probably use a CustomControl with two DependencyProperties. Then the external site that uses your custom control could bind the data that they want to that control, also by using a custom c …
2
votes
Copy Context Menu for ListView Control
It looks like you need a CommandBinding.
Here is how I would probably go about doing what you trying to do.
<Window.CommandBindings>
<CommandBinding
Comman …
10
votes
Best practice when not implementing IValueConvert.ConvertBack
The MSDN documentation for IValueConverter.ConvertBack recomends returning …
6
votes
databind the Source property of the WebBrowser in WPF
The problem is that WebBrowser.Source is not a DependencyProperty. One workaround …
1
vote
WPF: Eliminate transparency between grid cells.
Without seeing any code my guess is that you need SnapsToDevicePixels on the e …
6
votes
WPF: Binding source is string with path to property
It sounds like you want the PropertyPath to be "Property.Property" which will work, but for the binding to work it needs a source object for the first Property. The two options that I'm aware of ar …
