wpf

Silverlight tutorial of Cartman

Few months ago, I have came across a Silverlight tutorial of Eric Cartman (South Park). Which used the vector image from http://en.wikipedia.org/wiki/File:Eric.svg to animate him. However, I cannot seem to find that tutorial any longer. Can someone point me in the right direction, please? ...

Why databound ContextMenu items don't hide?

I wan't to hide/show menuitems in a contextmenu using some propery of databound object. But my menuitems don't hide, they behave as if their Visiblity would be set to Visibility.Hidden (not Visibility.Collapsed as it really is), what's the reason of such behaviour? Here's an example: XAML: <Window x:Class="MenuTest.Window1" xmlns=...

Weird problem when using ThreadPools to search through object lists

I have these container objects (let's call them Container) in a list. Each of these Container objects in turn has a DataItem (or a derivate) in a list. In a typical scenario a user will have 15-20 Container objects with 1000-5000 DataItems each. Then there are some DataMatcher objects that can be used for different types of searches. The...

Another way to display an XPS document using WPF

Hello! I would like to ask if there are any other alternatives, aside from DocumentViewer, for displaying an XPS document in a WPF application? A ready-to-use control or class in .NET if possible. This is because DocumentViewer is a little slow when you are scrolling through the pages. Thanks! ...

WPF Designer has bug with parsing generic control with overrided property

I've created a generic lookless control with virtual property: public abstract class TestControlBase<TValue> : Control { public static readonly DependencyProperty ValueProperty; static TestControlBase() { ValueProperty = DependencyProperty.Register("Value", typeof(TValue), ...

constrain StackPanel's width to smallest child element

How can I constrain a vertical WPF StackPanel's width to the most narrow item it contains. The StackPanel's width must not be greater than the width of any other child element. ...

What should the converter parameter be for this binding

I am trying to implement a wpf user control that binds a text box to a list of doubles using a converter. How can i set the instance of user control to be the converter parameter? the code for the control is shown below Thanks <UserControl x:Class="BaySizeControl.BaySizeTextBox" xmlns="http://schemas.microsoft.com/winfx/2006/xam...

WPF - Maximizing app window does not expand controls vertically - horizontally it does

when I press the Maximize button on my WPF app, all the controls therein expand perfectly horizontally, but they do not expand to fill the window vertically. I figure it Maximize handles it horizontally, it should handle it vertically as well. Should I be setting a property somewhere on each control? I can catch the Resize event, but ...

WPF: Is it possible to use a converter within a style?

WPF: Is it possible to use a converter within a style? For instance I am trying to create a styled TextBlock whose text resizes based on the ActualHeight property of the TextBlock. The resizing would be don via converter... ...

How do you make a copy of an Object

I have a collection of an object called Bookmarks which is made up of a collection of Bookmarks. This collection of bookmarks are bound to a treeview control. I can get the bookmarks back out that I need, but I need a copy of the bookmarks so I can work with it and not change the original. Any thoughts. Thanks. ...

Module Loading with ModuleManager in Prism

This question was also posted on Prism's site on Codeplex. I am a little lost on loading modules on demand, and I hope you guys can enlighten me. I am using v2 #7. Here's what I want to accomplish: 1) I have 2 regions - one for buttons that instantiate the modules (MenuRegion), another to show the modules (MainRegion). Only one mo...

How do I get the native "look and feel" using WPF?

I've just started developing a WPF application. This is not my first WPF app, but it will be the first that needs some polish. I know quite a bit about the "plumbing" of WPF such as binding, etc., but very little about how to polish it up. I don't need a snazzy UI. I just need something that looks like a native Windows app. For instance,...

WPF problems refreshing textblock bound to console.stdout

I am building a small wpf app in C#. When a button gets clicked a third party dll function constructs a tree like object. This object is bound to a treeview. This works fine but takes a bit of time to load. As the dll function constructs the object it prints progress info to the console. I want to redirect this into a TextBlock so th...

How to change the layout of a WPF Control from outside of that Control

Hi, I am big into code generation for the service/data layer of my apps. What I would really love to do is generate some basic WPF Controls, Data Templates, or some other XAML code based on the metadata I use to generate my service/data layer. EDIT: This generation is done before compile time. What I envision is being able to generate...

Systray context menu - why are my commands not enabled?

I'm creating a WPF app and have a system tray icon with a context menu. For the menu items I want to use WPF commands but when I assign them they are always greyed out even though the (same) commands are enabled in other places. MenuItem menuItem = new MenuItem(); menuItem.Header = "Exit"; menuItem.Command = CustomCommands.ExitApplicati...

How can I make a WPF WebBrowser read-only?

I'm using a WPF WebBrowser control to preview HTML typed by the user. example... But, how do I made the WebBrowser control read-only? I don't want the user to be clicking links in there and navigating away from the preview page. I want my users to create links. I just want to make sure the "preview" pane is a preview of the correct...

How Do You Set a Textblock to Autosize to the Width of a TreeView?

I have a TextBlock that I need to autosize to the width of a TreeView. The TreeView and the TextBlock are both contained in a StackPanel. The StackPanel is inside an Expander. The width of the Treeview should drive the width of the other objects and I need the height of the TextBlock to change to display the full text. All my efforts...

Can you add an extra item to a data bound ItemsControl in XAML?

I have an ItemsControl that is data bound to a list of decimals. I need to add one extra control to the ItemsControl (an option to specify the number manually). Is there a way to do this in XAML? I know I can manually add the item in the code behind, but I'm trying to understand WPF a little better and want to see if there is a declar...

How do you tell if a WPF Window is closed?

I'm working on an application that displays some child windows which can either be closed by the user or are automatically closed. While debugging some exceptions that were being thrown, I discovered I was trying to call methods like Hide() on a window that had already been closed; this particular branch of code was common to both cases...

WPF ListView Inactive Selection Color

I'm creating a WPF application where several ListView selections are made in a row (similar to the iTunes browser). The problem is that the default inactive selection color is too light. (see below) How can I change this color so my inactive listview looks like this? (see below) Solution Override the default SystemColor with a Style...