Version 4.0 of the Windows Presentation Foundation (WPF).

learn more… | top users | synonyms

56
votes
2answers
10k views

difference between ObservableCollection and BindingList

I want to know the difference between ObservableCollection and BindingList because I've used both to notify for any add/delete change in Source, but I actually do not know when to prefer one over the ...
5
votes
1answer
2k views

Coerce a WPF TextBox not working anymore in .NET 4.0

In my WPF application I have a TextBox where the user can enter a percentage (as int, between 1 and 100). The Text property is databound to a property in a ViewModel, where I coerce the value to be in ...
2
votes
2answers
3k views

WPF4 DataGridHeaderBorder in a xaml Style

Making a separate question, related to comments on the answer to http://stackoverflow.com/questions/2481946/wpf-4-what-happened-to-datagridcolumnheader It appears I can use DataGridHeaderBorder in a ...
7
votes
3answers
4k views

Why can't I style a control with the Aero theme applied in WPF 4.0?

I recently converted a project from WPF 3.5 to WPF 4.0. Functionally, everything works, but the DataGrid style I was applying on top of the Aero theme has suddenly stopped working. As you can see from ...
6
votes
1answer
5k views

Overriding button background in WPF on Aero

So, the desire is simple, change a button's background to LightGreen, Green when the mouse cursor hovers over it and DarkGreen when it is pressed. The following XAML is my first attempt: <Window ...
3
votes
1answer
656 views

Two Pass Layout system in WPF and Silverlight

Many times I have seen that the code in MeasureOverride and ArrangeOverride is same excepts calling measure and arrange in respective methods and a bit of additional logic like animation etc for each ...
16
votes
1answer
2k views

WPF Sentinel objects and how to check for an internal type

As some of you have discovered, a new feature (?) appeared WPF 4, where the data binding engine may pass your custom control instances of the class MS.Internal.NamedObject with the name ...
11
votes
2answers
8k views

Disable DataGrid current cell border in FullRow selection mode

I am using a DataGrid in row selection mode (i.e., SelectionUnit="FullRow"). I simply want to remove the border that is being placed around the current cell when the user highlights a row in order to ...
6
votes
3answers
2k views

New features of WPF 4?

I've been unable to find articles describing in any detailed manner the new features of WPF in .Net 4.0. Where could I find that? Thanks!
3
votes
1answer
3k views

Binding to a double with StringFormat on a TextBox

I am using WPF's TextBox with a binding on the Text property to a double on my ViewModel. My XAML looks like this: <TextBox Text="{Binding Path=MyDoubleValue, StringFormat=N2, ...
4
votes
1answer
62 views

Binding to interface typed properties

I just got bit by yet another binding oddity in WPF. Consider the following class and its IStupid typed property called MyStupid: public struct DumbClass { public IStupid MyStupid { get { return ...
1
vote
1answer
236 views

How to use WinRT transitions for WPF 4 [closed]

I'd like to use the new metro transitions (AddDeleteThemeTransition, ContentThemeTransition, ...), for my WPF 4 project. Can I use a dll ? Where could I download it ?
0
votes
1answer
1k views

Changing dynamically created button's background in WPF

I have the following code to dynamically create and add a button to a panel: StackPanel topPanel=...; Button button=new Button(); button.Content="New Button "+topPanel.Children.Count; // Set ...
5
votes
2answers
1k views

WPF 4: What happened to DataGridColumnHeader?

What happened to DataGridColumnHeader? It looks like it was dropped when the DataGrid was moved into PresentationFramework.
1
vote
1answer
456 views

WPF Style DataGridHyperlinkColumn

I created a style for a hyperlink control: <Style x:Key="MyHyperlink" TargetType="{x:Type Hyperlink}"> <Setter Property="Foreground" Value="{StaticResource HyperlinkBrush}" /> ...
1
vote
0answers
201 views

Strange order of firing of Validation.Error event - Added fired before Removed

I am getting strange behavior as far as order of firing of Validation.Error event is concerned. According to the documentation here, the data binding engine first removes any ValidationError that may ...
0
votes
1answer
607 views

Why does UseLayoutRounding not seem to work with Viewbox?

I'm trying to write a tile-based game in WPF 4. I want the game board to scale to fit the window, so I'm using a Viewbox; but I want each tile to be on a nice, crisp pixel boundary. I might be wrong, ...