The tag has no wiki summary.

learn more… | top users | synonyms

21
votes
2answers
3k views

difference between ObservableCollection and BindingList

I want to now the difference between ObservableCollection and BindingList because I used both to notify for any add/delete change in Source but I actually do not know the difference between these two ...
10
votes
1answer
940 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 ...
6
votes
3answers
1k 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!
5
votes
1answer
3k 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 ...
5
votes
2answers
731 views

WPF 4: What happened to DataGridColumnHeader?

What happened to DataGridColumnHeader? It looks like it was dropped when the DataGrid was moved into PresentationFramework.
5
votes
2answers
747 views

WPF Cursor on a partially transparent image

I have a png that contains transparent regions and I set it to the image tag but how am I able to set the cursor to a hand when it is over an opaque part of the image? Thanks Tony
4
votes
3answers
223 views
+50

Going from .NET 3.5 to 4 seems to break legacy XAML

In a legacy component I was troubleshooting, I stumbled across the following: <CustomControls:DiscreteSlider x:Name="slider" Grid.Column="1"> <CustomControls:DiscreteSlider.Value> ...
3
votes
1answer
176 views

Binding to double with StringFormat on TextBox

I am using wpf TextBox with binding on Text property to double on my ViewModel. My XAML looks like this: <TextBox Text="{Binding Path=MyDoubleValue, StringFormat=N2, ...
3
votes
1answer
141 views

WPF Command - Memory Leak

I'm using WPF 4 with the MVVM pattern. I have a TabControl - it looks like: <TabControl x:Name="Items" ItemsSource="{Binding Screens}" SelectedItem="{Binding ...
3
votes
2answers
363 views

Issue with x:TypeArguments and generic List class in XAML

I created the following markup for a loose XAML file. <StackPanel xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" ...
3
votes
1answer
224 views

Defining a color as a static resource

I would like to be able to do the following: ... <Grid> <Grid.Resources> <Color x:Key="MyColor">#FFEEDD</Color> <Color x:Key="MyOtherColor">Green</Color> ...
3
votes
1answer
1k views

MVVM Light Threading Example

Are there any examples on how to use the Threading portion of MVVM Light? What is the advantage of using the MVVMLight.threading over normal .net threading?
3
votes
3answers
308 views

Forcing initialization of a HwndHost

In my WPF application, I host Win32 content using HwndHost. However, creating a HwndHost does not create the native window. Rather, this is done in the overridden BuildWindowCore() method which is ...
3
votes
1answer
658 views

WPF DataGrid vertical sizing

I want to place a DataGrid inside a HeaderedContentControl but the the DataGrid does not get a vertical Scrollbar. It appears to be sized to hold all rows at once, the bottom disappearing from view. ...
3
votes
1answer
564 views

How to select all the text when the edit textbox in a DataGridTemplateColumn receives focus?

I'm trying to get a DataGridTemplateColumn to behave identically to a TextColumn when the cell goes into edit mode (Press F2), the user can immediately start typing in the new value by default, ...
2
votes
2answers
127 views

How to set a style for GridView cells

I'm puzzled how to simply right-align some columns in a GridView without writing tons of markup for every column. I can't use a static CellTemplate, because cell templates are ignored when you set ...
2
votes
0answers
79 views

How to scroll an Surface LibraryBar item into view?

Hallo, using WPF4 and Surface Toolkit 1.5 Beta I am adding items to a LibraryBar in a button click handler. I would like to have the LibraryBar scroll to the latest added item, like in this ...
2
votes
1answer
120 views

Does C# 4.0 Apps With Embedded Manifest require Digital Certificate or Stong Name to be installed on Client Machines?

I have a WPF 4.0 Application which will require stopping and starting our Windows Service, Application is Called Data Service Monitor. Rest of the things this Data Service Monitor App does do not ...
2
votes
2answers
156 views

Passing large sets of data into user controls

Since UserControls in WPF have to have parameterless constructors, what is the correct way for supplying them with fairly complex data that is needed "near" the time of construction. I have tried ...
2
votes
2answers
686 views

wpf keyboard focus: losing focus after menu opens?

This seems really easy, but it's definitely not working as expected. In WPF 4.0, I'm trying to create a window with a menu bar that accepts keyboard shortcuts... Just a simple window, a menu bar at ...
2
votes
1answer
2k 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 ...
2
votes
4answers
2k 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 ...
2
votes
2answers
2k views

BackgroundWorker or (Dispatcher)operation already completed when doing ReportProgress

I use DispatcherTimer because I need to do an operation every couple of minutes. Inside this I call a BackgroundWorker to do my work, and then use the dispatcher attached to the timer to update my UI. ...
2
votes
1answer
1k views

Can You build a DockPanel like Visual Studio in WPF

In Visual Studio, we can add various panels like SolutionExplorer Panel, Properties Panel,etc. Also we can minimize these panels and maximize these panels. I want to design a dockpanel similar to ...
2
votes
1answer
533 views

Canvas with transforms - what's the best way to draw a grid

I have a WPF canvas that I can scale, scroll and whatever. Now I want to draw (tiling) gridlines on it - preferably depending on the scale, which means that when you zoom out the old gridlines fade ...
2
votes
3answers
893 views

BackgroundWorker with Dispatcher doesn't seem to do anything

I am trying to update an ObservableCollection that is data bound to the UI. I know that to do this I need to use Dispatcher and BeginvInvoke(), and to make it so that the UI doesn't freeze up when I ...
2
votes
5answers
896 views

WPF DotNET Application will run in debug mode, but .EXE will not run

I wrote a WPF application in C# using VS 2010. The application will run fine in debug mode using Visual Studio, but when I go to run the .EXE from the bin\release folder, nothing happens. I do not get ...
2
votes
1answer
160 views

VistaBridge and Desktop window manager in WPF 4

I have started using WPF a short while back, and I'm in the progress of reading the book Pro WPF in C# 2008. Here they are using P/Invoke to "DmwApi.dll" to create Aero glass effect on windows, and ...
2
votes
1answer
821 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
2k 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 ...
2
votes
1answer
93 views

How do I change the Typography defaults in WPF?

When a WPF applications starts, it has some standard settings that are applied to determine how text and numbers will look. Is there any way for me to change these default settings programatically? ...
1
vote
1answer
34 views

Microsoft Pubcenter Ads In WPF Application

Is there anyway to insert the MS Pubcenter Ads into a WPF 4.0 C# application. If so, please show me step by step how.
1
vote
1answer
131 views

Modifying an existing MVVM infrastructure by adding View State feature

I'm going to introduce View State feature in the existing MVVM WPF Application. The objective is to be able to Save and Load (restore) particular state of a control. The question is more about design ...
1
vote
1answer
333 views

How to create a Flip control in WPF 4?

I am a Silverlight developer and in Silverlight we made use of PlanarProjection to create such effects. Infact this is the article along with demo project in Silverlight by Mike Taulty: ...
1
vote
0answers
150 views

Drag and drop items out of Surface LibraryBar to remove them?

Hallo, in my WPF4 & Surface Toolkit 1.5 Beta project I have a Surface LibraryBar with built-in drag and drop features. I also have a user control where I can drag and drop an item of the ...
1
vote
3answers
405 views

Generic Error in GDI+ using GetHBitmap (WPF4/C#)

I'm using the following code to capture the screen and copy it into a BitmapSource. The method is called continuously via a DispatcherTimer every 400ms. First, I used this code with .NET Framework ...
1
vote
2answers
199 views

Silverlight Binding to an item in a Dictionary

If I make the ViewModel definition to the following : public class MainViewModel : DynamicObject { public Dictionary<string, string> Attributes { get; set; } public MainViewModel() ...
1
vote
1answer
214 views

Tying user control property to named parent property

I want to set a user control property to the value of a property in a parent control. For example, let's say my main window control has some initial configuration data. Currently I use the following ...
1
vote
2answers
279 views

WPF 4 keyboard focus: never recieving key events

In WPF 4.0, I can't seem to get any keyboard shortcuts to work if I swap the user control in the window after it's been loaded. A code sample says a thousand words, so here's what I'm doing: Window ...
1
vote
1answer
324 views

Converting WPF project - Framework 3.5 to 4.0?

Currently my project delveoped in WPF with Framework 3.5 and I am planning to convertert from 3.5 to 4.0? Is there anything to be done to successfully convert from 3.5 to 4.0 or is it normal conversio ...
1
vote
2answers
74 views

How to bind individual collection items to different text boxes in WPF

Say I have a collection of phone numbers: phonenumbers.add(new phonenumber("mobile", "1234")); phonenumbers.add(new phonenumber("home", "5678")); If I have 2 text boxes, txtMobile and txtHome, how ...
1
vote
1answer
198 views

How to limit selection background color to item width in WPF ListView?

How can I make the selection color (blue here) stop at the end of the filename instead of going all the way to the edge of the ListView? I put the orange background on the item StackPanel to show ...
1
vote
2answers
821 views

Create a simple wpf trigger on one object that affects another

This is the closest that I have come to creating a simple trigger on this. I just want the datagrid's IsMouseOver == true to show the button. The problem is that the Setter's TargetName says: The ...
1
vote
1answer
103 views

Animate many Usercontrols as endless list

i get a variable number of user controls ordered as a list. My goal is to scroll these controls upwards. When the topmost control left the visible area i want to remove it from the top and append to ...
1
vote
1answer
286 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 ...
1
vote
4answers
333 views

Stop a method and wait for user input

My program's written in C# and has a GUI in WPF. When one button is clicked, the method StopAndGo() is invoked. The problem is that I want this method to stop at certain points, wait for user input, ...
1
vote
1answer
539 views

WPF How to get the control in a nested template

So I've seen lots and lots of examples where someone has a nifty data template with a control in it and their content control is applying the template and their code behind needs to grab it. But ...
1
vote
0answers
96 views

WPF bind fail,when I go to change position of elment about binded Collection

public ObservableCollection<string> S { get; set; } S is binded to ListBox Control,switch element of S,bind fail.ListBox Current item is follow: public string CurrentItem { ...
1
vote
1answer
1k views

Provide value on 'System.Windows.Data.Binding' threw an exception

I am adding a validation rule to a textbox (following examples on WPF 4 Unleashed by Adam Nathan) When starting an application, I am faced with the following cryptic error message Provide value ...
1
vote
3answers
857 views

What is the best book on WPF 4 for experience developer?

I have about 2 - 3 years of experience with WPF on .NET framework 3.5. I start programming in WPF by Windows Presentation Foundation Unleashed, I use its as reference as well. Now, I have a plan to ...

1 2