3
votes
1answer
117 views
Is there a way to not create an explicit EventHandler delegate in Visual Studio?
Visual Studio likes to be helpful when typing:
Event +=
by generating code like:
Event += new EventHandler(EventClassName_Event);
void EventClassN …
10
votes
Deleting items from one collection in another collection
Here are two options. Not sure which one is faster.
listB.RemoveAll(listA.Contains);
foreach (string str in listA.Intersect(listB))
listB.Remove(str);
…
6
votes
Is there an alternative to string.Replace that is case-insensitive?
From MSDN
$0 - "Substitutes the last substring matched by group number number (decimal)."
In .NET Re …
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 …
8
votes
Why events can’t be used in the same way in derived classes as in the base class in C#?
The standard practice here is to have a protected virtual method OnSomeEvent on your base class, then call that method in derived classes. Also, for threading reasons you will want to keep a refere …
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 …
7
votes
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 …
3
votes
ObservableCollection that also monitors changes on the elements in collection
If you want to use something built into the framework you can use FreezableCollection. Then you will want to liste …
8
votes
2
votes
Binding one collection to multiple tabs with filters
You can use a CollectionViewSource to reuse the original collection with a filter. …
