Search Results

1
vote
1answer
124 views

Type of object created by ListCollectionView.AddNew

How does ListCollectionView.AddNew determine the type of object it creates, and how could one affect it? I have a hierarchy of a few types (Base, DerivedA …
1
vote

textBoxEmployeeName vs employeeNameTextBox

As I read it, an article linked to in the article mentioned in the question (namely, Names of Resources) does use …
1
vote

In XAML, how can I keep an ellipse being a circle?

Would a simple Viewbox do the trick? E.g. <Viewbox xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/ …
1
vote

Loading XAML at runtime?

As Jakob Christensen noted, you can load any XAML you want using XamlReader.Load. This doesn't apply only for styles, but UIElements as well. You just load the XAML like: …
0
votes

looping through an image folder in a wpf application

[Nothing in your question (as it is currently stated) is really directly related to WPF as opposed to C# (and Windows development) in general, as far as I can tell. You might get a better reply if …
1
vote

WPF datagrid empty row at bottom

Sounds like you probably have CanUserAddRows set to true for the DataGrid. Just add CanUserAddRows="false" to the XAML. …