active questions tagged xaml - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T08:29:32Zhttp://stackoverflow.com/feeds/tag/xamlhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1858235/wpf-xaml-intellisense-doesnt-work-correctly-for-custom-routed-event-handlers0WPF XAML Intellisense doesn't work correctly for custom routed event handlersdkjunior2009-12-07T06:33:41Z2009-12-07T06:40:04Z
<p>I defined a custom routed event with the following constructs (names changed):</p>
<p>public class MyRoutedEventArgs : RoutedEventArgs
{...}</p>
<p>public delegate void MyRoutedEventHandler(Object sender, MyRoutedEventArgs args); </p>
<p>public static readonly RoutedEvent MyEvent;</p>
<p>MyClass.MyEvent =
EventManager.RegisterRoutedEvent("MyEvent", RoutingStrategy.Tunnel, typeof(MyRoutedEventHandler), typeof(MyClass));</p>
<p>Next, I'm creating a CLR event wrapper:</p>
<p>public event MyRoutedEventHandler MyEvent {
add { AddHandler(MyEvent, value); }
remove { RemoveHandler(MyEvent, value); }
}</p>
<p>The problem is when I define it as shown above, XAML intellisense doesn't work for autogenerating the handler method body. What I noticed is that if you change your CLR event wrapper to use generic RoutedEventHandler type, everything works! However in this case, the auto-generated method gets a generic RoutedEventArgs (well, correctly corresponding to RoutedEventHandler), which forces me to manually rewrite it as MyRoutedEventArgs.</p>
http://stackoverflow.com/questions/1832583/embed-multiple-icons-in-wpf-exe0Embed multiple icons in WPF EXEMinustar2009-12-02T12:20:50Z2009-12-07T06:23:36Z
<p>I have a WPF assembly in which I would like to embed five icons for different filetypes associated with my application.
How can I embed these icons into my EXE?</p>
<p>@smoore @Groky @ChrisF, thank you.
Unfortunately, this is not what I asked. I see that my question was quite vague 0_°. Let me rephrase the question:</p>
<p><hr></p>
<p>I have icons, say <code>Application.ico</code>, <code>Document.ico</code>, etc. as resources in my WPF projects. I access these icons in most cases with the following:</p>
<pre><code><Image Source="/MyAssembly;component/Resources/Icons/Application.ico" />
</code></pre>
<p>That works every single time. I know that.</p>
<p><hr></p>
<p>What my question is about is how can I use the same icons from Windows Explorer for file associations in the registry. I want to be able to access the icons with a path like:</p>
<pre><code>C:\Program Files\MyApp\MyApp.exe,1
</code></pre>
<p>Like in how icons are associated with filetypes in <code>HKEY_CLASSES_ROOT</code>.</p>
<p>AFAIK, I should use a resource file (<code>.rc</code>), compile and merge it with my EXE. Something along the lines of:</p>
<pre><code>101 RT_ICON Application.ico
102 RT_ICON Document.ico
// etc...
</code></pre>
<p>Is this the right way in WPF? Is there an alternative, especially since this method seems to lead to the erasure of the assembly version from my <code>AssemblyInfo.cs</code>. I am still prepared to have to write the versioning info in the resource instead of the assembly's info.</p>
http://stackoverflow.com/questions/1850199/visual-studio-2008-xaml-designer-doesnt-like-default-name-space-in-same-assembly0Visual Studio 2008 XAML Designer doesn't like default name space in same assembly.Creepy Gnome2009-12-04T22:55:10Z2009-12-07T00:51:52Z
<p><strong>Environment</strong></p>
<ul>
<li>Visual Studio 2008 SP1</li>
<li>Visual C# </li>
<li>WPF Application Project</li>
<li>.NET Framework 3.5</li>
</ul>
<p><strong>Problem</strong></p>
<p>You have a user control in the same assembly as another user control or window, and you are using it in this new user control or window. It compiles and runs fine, however the designer doesn't work and gives an exception "<em>Could not create an instance of type 'x'.</em>". This prevents the designer from rendering and the project from compiling while the designer is visible.</p>
<p><strong>Workaround</strong></p>
<p>While by hiding the designer on these controls and windows it allows the code to compile this is not an expectable solution as it prevents me from viewing and using the designer completely for these controls and windows.</p>
<p><strong>Code Examples</strong></p>
<pre><code>xmlns:local="clr-namespace:Foo.Bar.MyWpfApplication"
...
<Grid>
<local:MyUserControl Grid.Row="1" x:Name="myControl" />
</Grid>
</code></pre>
<p>Also tried this namespace statement with not change to the issue:</p>
<pre><code>xmlns:local="clr-namespace:Foo.Bar.MyWpfApplication;assembly="
</code></pre>
<p><strong>Question</strong></p>
<p>Has anyone had this issue and solved it?</p>
<p>For reference I have tried the solutions posted in this thread and they didn't work.</p>
<p><a href="http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/56f933c8-a093-4c47-8e1a-cde4bb1864e9" rel="nofollow">http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/56f933c8-a093-4c47-8e1a-cde4bb1864e9</a></p>
http://stackoverflow.com/questions/1401881/in-silverlight-3-0-can-i-create-a-data-template-in-an-external-file-that-include0In Silverlight 3.0, can I create a data template in an external file that includes a reference to an event handler?Brad Tutterow2009-09-09T20:23:46Z2009-12-07T00:00:04Z
<p>Is it possible to include an event handler reference in a data template that is not associated with the code-behind where the event handler is defined? I'm getting a PARSER-BAD-PROPERTY-VALUE when trying to pull this off.</p>
<p>For example, let's say I have this very simple XAML.</p>
<p><strong>page.xaml</strong></p>
<pre><code><DataTemplate x:Key="ItemsTemplate">
<HyperlinkButton Click="HyperlinkButton_Click" />
</DataTemplate>
<ItemsControl ItemTemplate="{StaticResource ItemsTemplate}" />
</code></pre>
<p>This works fine since the event handler *HyperlinkButton_Click* is in the code-behind for page.xaml.</p>
<p>BUT ... when I move the data template to another file ...</p>
<p><strong>resources.xaml</strong></p>
<pre><code><DataTemplate x:Key="ItemsTemplate">
<HyperlinkButton Click="HyperlinkButton_Click" />
</DataTemplate>
</code></pre>
<p><strong>page.xaml</strong></p>
<pre><code><ItemsControl ItemTemplate="{StaticResource ItemsTemplate}" />
</code></pre>
<p>... Silverlight seems to lose track of what I'm doing and I get the PARSER-BAD-PROPERTY-VALUE error.</p>
http://stackoverflow.com/questions/1856363/xaml-treeview-how-to-displayed-nodes-horizontally-instead-of-vertically0XAML Treeview, how to displayed nodes horizontally instead of verticallyJohn2009-12-06T19:38:53Z2009-12-06T20:15:44Z
<p>I'm kinda new at XAML and I'm trying to figure how to display the TreeView nodes horizontally instead of vertically, i.e</p>
<pre>
Header 1
Item 1 Item 2 item 3
Header 2
Item 4
</pre>
<p>Instead of</p>
<pre>
Header 1
Item 1
Item 2
Item 3
Header 2
Item 4
</pre>
<p>It's not really as simple as it seems, I was able to get the headers to go horizontally though...</p>
<p>XAML Code below</p>
<pre><code><Grid >
<TreeView ItemsSource="{Binding Children}">
<TreeView.Resources>
<HierarchicalDataTemplate DataType="{x:Type local:ApplicationListViewModel}"
ItemsSource="{Binding Children}">
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding Title}"/>
</StackPanel>
</HierarchicalDataTemplate>
<DataTemplate DataType="{x:Type local:ApplicationViewModel}" >
<StackPanel Orientation="Horizontal">
<ListView>
<Button>
<Image Source="{Binding Image}"/>
</Button>
</ListView>
</StackPanel>
</DataTemplate>
</TreeView.Resources>
</TreeView>
</code></pre>
<p></p>
<p><br>
<br>
<br>
<br>
</p>
<p>If it helps to know what I'm trying to accomplish with my code, then basically I'm trying to organise applications in a series of categories. A container(like a list box) is generated for each application category.</p>
<p>The data structure I have is</p>
<pre>
Application Collection
Application List (1-> Many)
Application (1-> Many)
</pre>
http://stackoverflow.com/questions/1856302/xaml-grid-column-resizing-when-contents-are-scaled2XAML grid column resizing when contents are scaledjmitch182009-12-06T19:22:10Z2009-12-06T19:42:34Z
<p>Is it possible to automatically resize a grid column in XAML when its contents are scaled?</p>
<p>Below are two screenshots to better explain what I mean. When the UserControl is first displayed it looks like:</p>
<p><img src="http://www.jason-mitchell.com/images/controlsBeforeScale.JPG" alt="before scaling"></p>
<p>The intention is that the white rounded rectangle (with the textblock, combobox and slider) should always be positioned off to the right of the grey rectangle. However, when the grey rectangle is scaled up from the code behind, the grid column width does not increase to accomodate this and creates the overlap as seen below.</p>
<p><img src="http://www.jason-mitchell.com/images/controlsAfterScale.JPG" alt="after scaling"></p>
<p>Is there some way to make this column change width automatically to fit the controls inside from XAML?</p>
<p>My XAML currently looks like:</p>
<pre><code><UserControl
x:Class="Project.Items.Bubble"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Project.Items">
<UserControl.Resources>
<ResourceDictionary
Source="./Assets/BubbleResourceDictionary.xaml" />
</UserControl.Resources>
<Grid
ShowGridLines="True">
<Grid.ColumnDefinitions>
<ColumnDefinition
Width="Auto" />
<ColumnDefinition
Width="Auto" />
</Grid.ColumnDefinitions>
<Grid
x:Name="ObjectRoot"
Style="{StaticResource ObjectRootStyle}">
<Rectangle
Style="{StaticResource RectangleStyle}" />
<Rectangle
Style="{StaticResource HighlightStyle}" />
<TextBlock
Style="{StaticResource TextStyle}"
Text="&lt;Text&gt;" />
</Grid>
<local:Editor
x:Name="Editor"
VerticalAlignment="Top"
HorizontalAlignment="Right"
Grid.Column="1" />
</Grid>
</code></pre>
<p></p>
<p><strong>Note:</strong> This is in Silverlight.</p>
http://stackoverflow.com/questions/1850380/how-to-bind-scaletransformation-x-to-slider-in-silverlight-31How to bind ScaleTransformation.X to slider in Silverlight 3Dusan Kocurek2009-12-04T23:34:49Z2009-12-06T19:27:09Z
<p>Hi,</p>
<p>I need to zoom Canvas. In WPF it is possible to bind ScaleTransformation.X to slider.Value.</p>
<p>I'm not able to do the same in Silverlight - some errors.</p>
<p>Is it supported in SL3?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1856176/how-i-should-reference-custom-control-in-c-code-behind-file-event-trigger0How I should reference Custom Control in C# code behind file event trigger?rem2009-12-06T18:38:25Z2009-12-06T18:42:39Z
<p>In Xaml page I reference my custom control this way:</p>
<pre><code><MyNamespace:CustControl x:Name="Cust1" />
</code></pre>
<p>Now I want change the property of this custom control in MouseLeftButtonDown event trigger:</p>
<pre><code>private void Grid_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
}
</code></pre>
<p>But when I try to write something like </p>
<pre><code>CustControl.IsSelected = true;
</code></pre>
<p>An error says: An object reference is required ..</p>
<p>I think it's all about "MyNamespace" namespace, but don't know how to reference it. </p>
http://stackoverflow.com/questions/1826672/binding-to-a-single-element-inside-a-compositecollection2Binding to a single element inside a CompositeCollectionMojoFilter2009-12-01T14:50:07Z2009-12-06T17:20:21Z
<p>I am trying to produce a list of servers for browsing on a network such that it produces a tree view which looks like this:</p>
<pre><code>-Local Server
- Endpoint 1
- Endpoint 2
-Remote
- <Double-click to add a server...>
- Remote Server 1
- Endpoint 1
- Endpoint 2
- Remote Server 2
- Endpoint 1
- Endpoint 2
</code></pre>
<p>My ViewModel looks like this:</p>
<pre><code>...
public Server LocalServer;
public ObservableCollection<Server> RemoteServers;
...
</code></pre>
<p>So, how does one go about constructing the list in xaml with a binding to a single object <strong>and</strong> a list of objects? I might be thinking about it completely the wrong way, but what my brain really wants to be able to do is something like this:</p>
<pre><code><CompositeCollection>
<SingleElement Content="{Binding LocalServer}">
<!-- ^^ something along the lines of a ContentPresenter -->
<TreeViewItem Header="Remote">
<TreeViewItem.ItemsSource>
<CompositeCollection>
<TreeViewItem Header="&lt;Click to add...&gt;" />
<CollectionContainer Collection="{Binding RemoteServers}" />
</CompositeCollection>
</TreeViewItem.ItemsSource>
</TreeViewItem>
</CompositeCollection>
</code></pre>
<p>I feel like there must be a fundamental element I'm missing which keeps me from being able to specify what I want here. That single item has children. I did try using a ContentPresenter, but for whatever reason, it was not expandable even though it picked up the <code>HierarchicalDataTemplate</code> to display the title correctly.</p>
<p><hr></p>
<p><strong>Update</strong></p>
<p>So for now, I've exposed a property on the view model that wraps the single element in a collection so that a <code>CollectionContainer</code> may bind to it. I would really like to hear folks' ideas on how to do this, though. It seems awfully fundamental.</p>
http://stackoverflow.com/questions/1849848/adding-an-image-to-a-button-in-xaml1Adding an image to a button in XAMLScott2009-12-04T21:45:33Z2009-12-06T15:08:46Z
<p>I'm trying to add an image to a button in my silverlight 3 application but cannot get the image to appear. I added a folder, named \images, to my Silverlight application folder and an using a relative path in the Source attribute of the Image. What am I doing wrong?</p>
<pre><code><Button Width="200"
Height="200">
<Image Source="images\document.png"></Image>
</Button>
</code></pre>
http://stackoverflow.com/questions/1854952/binding-of-textblock-inside-custom-control-to-dependency-property-of-the-same-cus1Binding of TextBlock inside Custom Control to dependency property of the same Custom Controlrem2009-12-06T10:07:00Z2009-12-06T10:16:09Z
<p>I have a custom control with a TextBlock inside it:</p>
<pre><code><Style TargetType="{x:Type local:CustControl}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type local:CustControl}">
<Border Background="Blue"
Height="26"
Width="26" Margin="1">
<TextBlock x:Name="PART_CustNo"
FontSize="10"
Text="{Binding Source=CustControl,Path=CustNo}"
Background="PaleGreen"
Height="24"
Width="24"
Foreground="Black">
</TextBlock>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</code></pre>
<p>And this Custom control has a dependency property:</p>
<pre><code> public class CustControl : Control
{
static CustControl()
{
DefaultStyleKeyProperty.OverrideMetadata(typeof(CustControl), new FrameworkPropertyMetadata(typeof(CustControl)));
}
public readonly static DependencyProperty CustNoProperty = DependencyProperty.Register("CustNo", typeof(string), typeof(CustControl), new PropertyMetadata(""));
public string CustNo
{
get { return (string)GetValue(CustNoProperty); }
set { SetValue(CustNoProperty, value); }
}
}
</code></pre>
<p>I want the value of "CustNo" property be transfered in "Text" property of TextBlock in each instance of the Custom Control.
But my:</p>
<pre><code>Text="{Binding Source=CustControl,Path=CustNo}"
</code></pre>
<p>isn't working.</p>
<p>Isn't working also with Path=CustNoProperty:</p>
<pre><code>Text="{Binding Source=CustControl,Path=CustNoProperty}"
</code></pre>
http://stackoverflow.com/questions/1854703/how-to-set-richtextbox-font-for-the-next-text-to-be-written0How to set RichTextBox Font for the next text to be written?Néstor Sánchez A.2009-12-06T08:01:29Z2009-12-06T09:00:06Z
<p>Hi, I need to set the font family for the next text to be written in a RichTextBox.
I tried setting that with...</p>
<pre><code><RichTextBox x:Name="RichTextEditor" MaxWidth="1000" SpellCheck.IsEnabled="True"
FontFamily="{Binding ElementName=TextFontComboBox, Path=SelectedItem}"
FontSize="{Binding ElementName=TextSizeComboBox, Path=SelectedValue}"
Width="Auto" Height="Auto" HorizontalScrollBarVisibility="Auto"
VerticalScrollBarVisibility="Auto" />
</code></pre>
<p>...but it changed the whole text. I suppose that with the Selection property I can restrict the change to be applied just to the selected area. But how for the next -not yet typed- text?</p>
http://stackoverflow.com/questions/1854699/how-to-define-stroke-around-background-rectangle-of-textblock-in-wpf1How to define stroke around background rectangle of textblock in WPF?rem2009-12-06T07:59:02Z2009-12-06T08:13:57Z
<p>I would like to have some text to be inside a rectangle with stroke around this rectangle (just like property "Stroke" of the object "Rectangle" itself). But I didn't manage to find a property of the object "Textblock" wich defines such a stroke.</p>
http://stackoverflow.com/questions/777719/scale-a-canvas-inside-a-templated-usercontrol0Scale a canvas inside a templated usercontrolMario2009-04-22T15:09:04Z2009-12-06T08:00:00Z
<p>Hi geeks,
I created a templated usercontrol from a button in order to use common states etc. What I dont get is how to scale a canvas inside the template. I created a little drawing with lines but they do not scale/transform with the control when I use it.
Most interesting would be if that is possible using xaml element binding (I am playing with SL3).</p>
<p>Regards Mario</p>
http://stackoverflow.com/questions/1854484/uielement-position-relative-to-window0UIelement position relative to WindowClaus Jørgensen2009-12-06T05:55:47Z2009-12-06T06:05:28Z
<p>Hi</p>
<p>In WPF, I want to get the corner location of a TabControl in my code, so I can set a ToolWindow's location accordingly when shown.</p>
<p>How do I get the location of a given UIElement ?</p>
<pre><code>buildingInfoWindow = new BuildingInfoWindow(); // BuildingWindow : System.Windows.Window
buildingInfoWindow.Owner = this;
//buildingInfoWindow.Left = ?; // relative X coordinate of my TabControl
//buildingInfoWindow.Top = ?; // relative Y coordinate of my TabControl
</code></pre>
http://stackoverflow.com/questions/1853207/wpf-can-i-put-a-colour-animation-in-a-style0WPF: Can I put a colour animation in a style?Anthony2009-12-05T19:38:10Z2009-12-05T23:02:32Z
<p>This is a simple WPF window in XAML:</p>
<pre><code><Window x:Class="AnimateTest.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="300" Width="300"
x:Name="MainWindow"
Style="{StaticResource TestStyle}">
<Grid>
</Grid>
</Window>
</code></pre>
<p>Note that is has a style. What can we do with the style? This is the <code>App.xaml</code> that gives it a light blue background</p>
<pre><code><Application x:Class="AnimateTest.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="Window1.xaml">
<Application.Resources>
<Style x:Key="TestStyle">
<Setter Property="Window.Background" Value="AliceBlue" />
</Style>
</Application.Resources>
</Application>
</code></pre>
<p>To get more complex, this is the background that gives it a blue gradient background:</p>
<pre><code><Application x:Class="AnimateTest.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="Window1.xaml">
<Application.Resources>
<LinearGradientBrush x:Key="BackgroundBrush"
EndPoint="0.6,0.6" StartPoint="0,0">
<GradientStop Color="#FFFFFFFF" Offset="0" />
<GradientStop Color="#FFD0D0F0" Offset="1" />
</LinearGradientBrush>
<Style x:Key="TestStyle">
<Setter Property="Window.Background" Value="{StaticResource BackgroundBrush}" />
</Style>
</Application.Resources>
</Application>
</code></pre>
<p>The last step that I want to do is to animate this colour. I have </p>
<pre><code><Application x:Class="AnimateTest.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="Window1.xaml">
<Application.Resources>
<LinearGradientBrush x:Key="BackgroundBrush"
EndPoint="0.6,0.6" StartPoint="0,0">
<GradientStop Color="#FFFFFFFF" Offset="0" />
<GradientStop Color="#FFD0D0F0" Offset="1" />
</LinearGradientBrush>
<Style x:Key="TestStyle">
<Setter Property="Window.Background" Value="{StaticResource BackgroundBrush}" />
</Style>
<Storyboard x:Key="ThemeAnimation">
<ColorAnimationUsingKeyFrames
Storyboard.TargetName="(UIElement)"
Storyboard.TargetProperty="Background.GradientStops[1].Color"
Duration="0:0:10"
RepeatBehavior="Forever">
<ColorAnimationUsingKeyFrames.KeyFrames>
<LinearColorKeyFrame Value="#FFD0D0F0" KeyTime="0:0:0" />
<LinearColorKeyFrame Value="#FFF0D0F0" KeyTime="0:0:10" />
</ColorAnimationUsingKeyFrames.KeyFrames>
</ColorAnimationUsingKeyFrames>
</Storyboard>
</Application.Resources>
</Application>
</code></pre>
<p>So I can do this in the Window constructor:</p>
<pre><code> object themeAnimationObject = this.FindResource("ThemeAnimation");
Storyboard themeAnimation = themeAnimationObject as Storyboard;
themeAnimation.Begin(this);
</code></pre>
<p>But I get an exception:</p>
<pre><code>(UIElement)' name cannot be found in the name scope of 'AnimateTest.Window1'
</code></pre>
<p>I have tried various combinations of values for the animation's <code>Storyboard.TargetName</code> and <code>Storyboard.TargetProperty</code> properties, but they didn't work, I'm just groping in the dark. The best outcome would be able to apply the style, animations and all to any window without any, or with minimal c# code </p>
<p>Update: Here's the working App.xaml based on itowlson's answer:</p>
<pre><code><Application x:Class="AnimateTest.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="Window1.xaml">
<Application.Resources>
<LinearGradientBrush x:Key="BackgroundBrush"
EndPoint="0.6,0.6" StartPoint="0,0">
<GradientStop Color="#FFFFFFFF" Offset="0" />
<GradientStop Color="#FFD0D0F0" Offset="1" />
</LinearGradientBrush>
<Style x:Key="TestStyle" TargetType="FrameworkElement">
<Setter Property="Window.Background" Value="{StaticResource BackgroundBrush}" />
<Style.Triggers>
<EventTrigger RoutedEvent="Loaded">
<BeginStoryboard>
<Storyboard>
<ColorAnimationUsingKeyFrames
Storyboard.TargetProperty="Background.GradientStops[1].Color"
Duration="0:0:10"
RepeatBehavior="Forever"
AutoReverse="True">
<ColorAnimationUsingKeyFrames.KeyFrames>
<LinearColorKeyFrame Value="#FFD0D0F0" KeyTime="0:0:0" />
<LinearColorKeyFrame Value="#FFF0D0F0" KeyTime="0:0:10" />
</ColorAnimationUsingKeyFrames.KeyFrames>
</ColorAnimationUsingKeyFrames>
</Storyboard>
</BeginStoryboard>
</EventTrigger>
</Style.Triggers>
</Style>
</Application.Resources>
</Application>
</code></pre>
http://stackoverflow.com/questions/1387701/how-can-i-make-the-wpf-tabcontrol-appear-as-it-is-with-multiline-false-in-windo2How can I make the WPF TabControl appear as it is with MultiLine = false in Windows forms (default).Brett Ryan2009-09-07T05:40:51Z2009-12-05T21:35:38Z
<p>In Windows Forms the default behaviour of a TabControl is to have the tabs spill out to a scrollable area if they consume too much space (MultiLine = false).</p>
<p>What is the best approach to achieving this behavior in WPF?</p>
<p><strong>UPDATE</strong></p>
<p>I was trying to find a solution using <code>TabControl.ItemsPanel</code> but it seems anything I put in there gets completely ignored, so for this reason I've gone the hard way and started with <code>TabControl.Template</code> which is mind boggling that we have to do it this way if it turns out to be the correct approach.</p>
<p>Extremely far from being complete, my starting solution to the problem is as follows.</p>
<pre><code><TabControl>
<TabControl.Template>
<ControlTemplate TargetType="{x:Type TabControl}">
<DockPanel>
<ScrollViewer DockPanel.Dock="Top"
HorizontalScrollBarVisibility="Auto"
VerticalScrollBarVisibility="Disabled">
<StackPanel Orientation="Horizontal" IsItemsHost="True" />
</ScrollViewer>
<ContentPresenter ContentSource="SelectedContent" />
</DockPanel>
</ControlTemplate>
</TabControl.Template>
<TabItem Header="One">First</TabItem>
<TabItem Header="Two">Second</TabItem>
<TabItem Header="Three">Third</TabItem>
<TabItem Header="Four">Fourth</TabItem>
<TabItem Header="Five">Fifth</TabItem>
</TabControl>
</code></pre>
http://stackoverflow.com/questions/1853285/where-should-be-put-xaml-for-layout-of-custom-control-in-wpf0Where should be put XAML for layout of custom control in WPF?rem2009-12-05T20:04:51Z2009-12-05T20:12:32Z
<p>After custom control is created there automatically appeared file for C# code - MyCustomControl.cs:</p>
<pre><code>public class MyCustomControl : ContentControl {
static MyCustomControl( ) {
...
DefaultStyleKeyProperty.OverrideMetadata(typeof(MyCustomControl),
new FrameworkPropertyMetadata(typeof(MyCustomControl)));
}
...
}
</code></pre>
<p>and file for default stile - Themes\Generic.xaml:</p>
<pre><code> <!-- themes/generic.xaml -->
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:CustomControlLib">
<Style TargetType="{x:Type local:MyCustomControl}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type local:MyCustomControl}">
<Border Background="{TemplateBinding Background}"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}">
<ContentPresenter />
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>
</code></pre>
<p>But where and how should I correctly place XAML code for layout and content of Custom Control itself?</p>
http://stackoverflow.com/questions/1848329/wpf-change-grid-columnspan-on-trigger0WPF Change Grid.ColumnSpan on triggertenfour2009-12-04T17:03:50Z2009-12-05T17:04:10Z
<p>I have a DockPanel with 2 ListBoxes docked on the left and a 2-column Grid on the right. </p>
<p>When an item is selected in listBox1, I display a details view in Column 0 of the Grid.</p>
<p>When an item is selected in listBox2, I display a details view in Column 1 of the Grid.</p>
<pre><code> <DockPanel>
<StackPanel DockPanel.Dock="Left" Orientation="Horizontal">
<ListBox x:Name="listBox1" ItemsSource="{Binding Items1}" SelectedItem="{Binding SelectedItem1}"/>
<ListBox x:Name="listBox2" ItemsSource="{Binding Items2}" SelectedItem="{Binding SelectedItem2}"/>
</StackPanel>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<ContentControl Grid.Column="0" Content="{Binding SelectedItem1}" ContentTemplateSelector="{StaticResource SelectedItemTemplateSelector}"/>
<ContentControl Grid.Column="1" Content="{Binding SelectedItem2}" ContentTemplateSelector="{StaticResource SelectedItemTemplateSelector}"/>
</Grid>
</DockPanel>
</code></pre>
<p>This works fine. However, I'd like to modify it so that the details view will span <strong>both grid columns</strong> when there is an item selected in one of the ListBoxes but not in the other. </p>
<p>My first thought was to create a couple of DataTriggers that modify the ColumnSpan of the ContentControls based on the SelectedIndex of the ListBoxes. </p>
<p>This works fine for the details view that normally lives in Grid.Column="0". However, it doesn't work for the details view that normally lives in Grid.Column="1" since the original column number is hard-coded:</p>
<pre><code> <ContentControl Grid.Column="0" Content="{Binding SelectedItem1}" ContentTemplateSelector="{StaticResource SelectedItemTemplateSelector}">
<ContentControl.Style>
<Style TargetType="ContentControl">
<Style.Triggers>
<DataTrigger Binding="{Binding ElementName=listBox2, Path=SelectedIndex}" Value="-1">
<Setter Property="Grid.ColumnSpan" Value="2"/>
</DataTrigger>
</Style.Triggers>
</Style>
</ContentControl.Style>
</ContentControl>
<ContentControl Grid.Column="1" Content="{Binding SelectedItem2}" ContentTemplateSelector="{StaticResource SelectedItemTemplateSelector}">
<ContentControl.Style>
<Style TargetType="ContentControl">
<Style.Triggers>
<DataTrigger Binding="{Binding ElementName=listBox1, Path=SelectedIndex}" Value="-1">
<!--Can't modify Grid.Column since it's hardcoded above!-->
<Setter Property="Grid.Column" Value="0"/>
<Setter Property="Grid.ColumnSpan" Value="2"/>
</DataTrigger>
</Style.Triggers>
</Style>
</ContentControl.Style>
</ContentControl>
</code></pre>
<p>If I could create a DataTrigger that could do a value comparison against ListBox.SelectedIndex (ie. >=0), then I could avoid hard-coding the column numbers in the first place. </p>
<p>Is there any way to do something like this in XAML? </p>
<p><strong>tl;dr:</strong> I want detail views to appear in 2 columns if 2 items are selected, and to span 2 columns if only 1 item is selected. </p>
http://stackoverflow.com/questions/1850264/textbox-with-automatic-culture-formatting0TextBox with automatic culture formatting?Ryuching2009-12-04T23:09:20Z2009-12-05T16:34:27Z
<p>I'm trying to create a TextBox that only allows positive integer input, and that should display the input with culture-specific formatting automatically (in this case en-US, so it should use the ',' sign as a separator for larger numbers). So:</p>
<ul>
<li>An entry of 1000 should show as '1,000' in the TextBox</li>
<li>An entry of 1,000 should show as such, but be interpreted correctly...</li>
</ul>
<p>At present, no such automatic formatting is made in the first case, and the second case triggers an error from the ValidationRule I've implemented to check that the input is correct (which uses a TryParse to check a valid number has been entered).</p>
<p>I'm embarrassingly new at thinking in terms of globalization and internationalization here, so I'm wondering if there is som culture-related magic I can work to separate the displayed formatting, from the actual data and make the formatting automated, while being entered?</p>
<p>This is the xaml for the TextBox from the code-behind:</p>
<pre><code><TextBox
Foreground="{StaticResource WindowForegroundBrush}"
Background="{StaticResource EntryFieldBackgroundBrush}"
TextWrapping="NoWrap"
MaxLines="1"
MaxLength="100"
Margin="{StaticResource EntryFormTextBoxMargins}"
VerticalAlignment="Stretch"
RenderTransformOrigin="0.5,0.5"
HorizontalAlignment="Stretch"
VerticalContentAlignment="Center"
MinWidth="300"
MinHeight="30"
x:Name="PopTxtBox"
MaxWidth="300"
TextChanged="PopTxtChange">
<Binding
Path="locationPopulation"
Source="{StaticResource locDT}"
UpdateSourceTrigger="PropertyChanged">
<Binding.ValidationRules>
<c:PopValidationRule />
</Binding.ValidationRules>
</Binding>
</code></pre>
<p></p>
<p>And here's the ValidationRule I've written: </p>
<pre><code> public class PopulationValidationRule : ValidationRule
{
public override ValidationResult Validate(object value, CultureInfo cultureInfo)
{
UInt64 popValue;
if (value == null)
{
return new ValidationResult(true, null);
}
else if (!UInt64.TryParse((string)value, NumberStyles.AllowThousands, null, out popValue))
{
return new ValidationResult(false, "Value must be a valid number.");
}
return new ValidationResult(true, null);
}
}
</code></pre>
<p>As an aside, I'd like the TextBox to be able to display as empty - right now, the TextBox displays '0' on load, and leaving the TextBox empty triggers a validation error (even though I allow it in the ValidationRule). As far as I can gather, when I bind the TextBox to have a numeric value, it's not allowed a null value. Is there some way to handle that as well?</p>
http://stackoverflow.com/questions/1852073/wpf-selected-property-of-custom-control-or-logical-focus-what-should-be-used0WPF "Selected" Property of Custom Control or "Logical Focus". What should be used?rem2009-12-05T12:19:28Z2009-12-05T13:27:18Z
<p>In my WPF project I have a custom control which is visually represented by a rectangle object. In XAML I put a number of rectangles based on this custom control. User should be able to select a group of these rectangles by mouse clicks and then do some actions with these selected rectangles.</p>
<p>How I should implement the possibility of selection: (1) should I simply add yet another custom property e.g. "Selected" and change it in MouseClick event handlers or (2) should I use native "Logical Focus" functionality? </p>
http://stackoverflow.com/questions/723239/floating-child-window-in-wpf0Floating child window in WPFDusan Kocurek2009-04-06T21:04:42Z2009-12-05T08:00:05Z
<p>Hi,</p>
<p>I want to create floating child window in .NET 3.0 WPF application.
What I'm doing is:</p>
<pre><code>sideWindow = new SideWindow(this);
sideWindow.Left = System.Windows.Forms.Screen.PrimaryScreen.Bounds.Width - sideWindow.Width;
sideWindow.Top = 125;
sideWindow.WindowStartupLocation = WindowStartupLocation.Manual;
sideWindow.Owner = this;
sideWindow.Show();
</code></pre>
<p>This is running fine except one customer. According to trace messages the window is created, but the client doesn't see it!</p>
<p>Any idea about similar problems?</p>
<p>Thank you very much.</p>
http://stackoverflow.com/questions/1841646/xaml-without-the-xaml-cs-code-behind-files2XAML without the .xaml.cs code behind files.Eric2009-12-03T17:46:31Z2009-12-05T02:15:01Z
<p>I'm using WPF with the Model-View-ViewModel pattern. Thus, my code behind files (.xaml.cs) are all empty, except for the constructor with a call to InitializeComponent. Thus, for every .xaml file I have a matching, useless, .xaml.cs file.</p>
<p>I swear I read somewhere that if the code behind file is empty except for the constructor, there is a way to delete the file from the project altogether. After searching the net, it seems that the appropriate way to do this is to use the 'x:Subclass' attribute:</p>
<pre><code><UserControl
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
xmlns:toolkit="http://schemas.microsoft.com/wpf/2008/toolkit"
x:Class="MyNamespace.MyClass"
x:Subclass="UserControl"
d:DesignWidth="700" d:DesignHeight="500">
</code></pre>
<p>This does the following in the generated .g.cs file:</p>
<ol>
<li>Removes the 'partial' class modifier on MyClass.</li>
<li>Adds the class 'UserControl' in to its subclass list.</li>
</ol>
<p>Seems perfect. Indeed, if you still have the .xaml.cs file in the build, it no longer compiles because of the missing partial--so I'm thinking this must be correct. However, if I remove the superfluous file from the build and run, the control does not get initialized correctly (it is blank). This is, I presume, because InitializeComponent() is not getting called. I see InitializeComponent is not virtual, so it seems there would be no way for the base class to call it (short of using reflection).</p>
<p>Am I missing something?</p>
<p>Thanks!</p>
<p>Eric</p>
http://stackoverflow.com/questions/869761/wpf-implementing-a-mediaplayer-audio-video-seeker0WPF: Implementing a MediaPlayer Audio / Video SeekerAndreas Grech2009-05-15T16:53:49Z2009-12-04T22:00:02Z
<p>I am currently working on an MP3 player (in a WPF application) with a WPF <code>MediaPlayer</code> and basically, I want to implement a Song Seeker which moves along with the current playing song.</p>
<p>I already implemented a song slider (from <a href="http://www.codeproject.com/KB/WPF/WPF%5FMedia%5FPlayer.aspx?fid=459289&df=90&mpp=25&noise=3&sort=Position&view=Quick&fr=26#xx0xx" rel="nofollow">Sacha Barber's application</a>) and it works when the user drags the seeker manually (as in, the song continues from that position) but I cannot figure out how to make the seeker move according to the current position in the song.</p>
<p>Trouble is I don't think there is a way to check when the <code>Position</code> property of the <code>MediaPlayer</code> has changed, so I'm stumped as to how I should implement this feature.</p>
<p>Any ideas on how to go about such an issue?</p>
<p><strong>[Update]</strong></p>
<p>As regards incrementing the seeker with a timer, I actually thought of using the reason I didn't try it yet is because I think there is a better way to implement this using the <code>MediaTimeline</code>...but I'm yet to figure out how.</p>
http://stackoverflow.com/questions/1779022/xaml-binding-doesnt-seem-to-set-if-the-property-is-initialized-in-the-constructo1XAML binding doesn't seem to set if the property is initialized in the constructorarchimed75922009-11-22T15:26:49Z2009-12-04T18:55:51Z
<p>Hello, everybody!</p>
<p>I've run into a problem with data-binding inside control template while the property is initialized inside the constructor.</p>
<p>Here is the show-case (you can also download <a href="http://www.filehosting.org/file/details/75794/WpfApplication5.zip" rel="nofollow">sample solution</a>):</p>
<p>CustomControl1.cs</p>
<pre><code>public class CustomControl1 : ContentControl
{
static CustomControl1()
{
DefaultStyleKeyProperty.OverrideMetadata(
typeof(CustomControl1),
new FrameworkPropertyMetadata(typeof(CustomControl1)));
}
public CustomControl1()
{
Content = "Initial"; // comment this line out and everything
// will start working just great
}
}
</code></pre>
<p>CustomControl1 style:</p>
<pre><code><Style TargetType="{x:Type local:CustomControl1}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type local:CustomControl1}">
<Border Background="{TemplateBinding Background}"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}">
<ContentPresenter />
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</code></pre>
<p>CustomControl2.cs:</p>
<pre><code>public class CustomControl2 : ContentControl
{
static CustomControl2()
{
DefaultStyleKeyProperty.OverrideMetadata(
typeof(CustomControl2),
new FrameworkPropertyMetadata(typeof(CustomControl2)));
}
}
</code></pre>
<p>CustomControl style:</p>
<pre><code><Style TargetType="{x:Type local:CustomControl2}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type local:CustomControl2}">
<Border Background="{TemplateBinding Background}"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}">
<local:CustomControl1
Content="{Binding Content,
RelativeSource={RelativeSource
AncestorType=local:CustomControl2}}" />
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</code></pre>
<p>Window1.xaml:</p>
<pre><code><Window x:Class="WpfApplication5.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="300" Width="300"
xmlns:local="clr-namespace:WpfApplication5">
<Grid>
<local:CustomControl2 Content="Some content" />
</Grid>
</Window>
</code></pre>
<p><strong>So, the problem is</strong>: when you launch the app, the content of CustomControl1 appears to be "Initial" which is set by constructor, not the "Some content" string, which is supposed to be set by binding.</p>
<p>When we remove the initialization from the constructor, the binding starts working.</p>
<p>First of all, let me predict the answer: "you should set the initial value of a dependency property inside its metadata: either at the moment of registration or by means of metadata overriding capabilities". Yeap, you right, but the problem with this method of initialization is that the property is of collection type, so if I'll provide <code>new MyCustomCollection()</code> as a default value of the property, then every instance of <code>CustomControl1</code> will share the same instance of that collection and that's obviously not the idea.</p>
<p>I've done some debugging on the problem, here are the results:</p>
<ul>
<li>Binding instance is created, when we put it in element-like syntax and assign <code>x:Name</code> to it, then it's accessible through <code>Template.FindName("PART_Binding", this)</code> inside <code>OnApplyTemplate</code>.</li>
<li>Binding simply isn't set on the property: inside the same <code>OnApplyTemplate</code> the code <code>this.GetBindingExpression(ContentProperty)</code> return <code>null</code>.</li>
<li>There is nothing wrong with the binding itself: inside <code>OnApplyTemplate</code> we can look it up and then we can simply set it on the property like this: <code>this.SetBinding(ContentProperty, myBinding)</code> - everything will work fine.</li>
</ul>
<p><strong>Can anyone explain how and why that happens?</strong></p>
<p><strong>Does anyone have a solution for setting non-shared initial value for a dependency property, so the binding wouldn't break?</strong></p>
<p>Thanks in advance!</p>
<p><strong>UPD:</strong>
The most weird thing is that debug output with highest trace-level is the same for both cases: either when the binding doesn't occur or if it does.</p>
<p>Here it goes:</p>
<pre><code>System.Windows.Data Warning: 52 : Created BindingExpression (hash=18961937) for Binding (hash=44419000)
System.Windows.Data Warning: 54 : Path: 'Content'
System.Windows.Data Warning: 56 : BindingExpression (hash=18961937): Default mode resolved to OneWay
System.Windows.Data Warning: 57 : BindingExpression (hash=18961937): Default update trigger resolved to PropertyChanged
System.Windows.Data Warning: 58 : BindingExpression (hash=18961937): Attach to WpfApplication5.CustomControl1.Content (hash=47980820)
System.Windows.Data Warning: 62 : BindingExpression (hash=18961937): RelativeSource (FindAncestor) requires tree context
System.Windows.Data Warning: 61 : BindingExpression (hash=18961937): Resolve source deferred
System.Windows.Data Warning: 63 : BindingExpression (hash=18961937): Resolving source
System.Windows.Data Warning: 66 : BindingExpression (hash=18961937): Found data context element: <null> (OK)
System.Windows.Data Warning: 69 : Lookup ancestor of type CustomControl2: queried Border (hash=11653293)
System.Windows.Data Warning: 69 : Lookup ancestor of type CustomControl2: queried CustomControl2 (hash=54636159)
System.Windows.Data Warning: 68 : RelativeSource.FindAncestor found CustomControl2 (hash=54636159)
System.Windows.Data Warning: 74 : BindingExpression (hash=18961937): Activate with root item CustomControl2 (hash=54636159)
System.Windows.Data Warning: 104 : BindingExpression (hash=18961937): At level 0 - for CustomControl2.Content found accessor DependencyProperty(Content)
System.Windows.Data Warning: 100 : BindingExpression (hash=18961937): Replace item at level 0 with CustomControl2 (hash=54636159), using accessor DependencyProperty(Content)
System.Windows.Data Warning: 97 : BindingExpression (hash=18961937): GetValue at level 0 from CustomControl2 (hash=54636159) using DependencyProperty(Content): 'Some content'
System.Windows.Data Warning: 76 : BindingExpression (hash=18961937): TransferValue - got raw value 'Some content'
System.Windows.Data Warning: 85 : BindingExpression (hash=18961937): TransferValue - using final value 'Some content'
</code></pre>
<p><strong>UPD2:</strong> added a link to the <a href="http://www.filehosting.org/file/details/75794/WpfApplication5.zip" rel="nofollow">sample solution</a></p>
http://stackoverflow.com/questions/633817/how-to-achieve-vista-glass-transparency-aero-in-a-wpf-application2How to achieve Vista glass transparency (AERO) in a WPF application?Holli2009-03-11T09:11:28Z2009-12-04T16:48:48Z
<p>It's easy for a WPF application to make parts of a window transparent or semi-transparent. But how to I apply the current Vista theme (colors, opacity) to these transparent parts?</p>
<p>When I have a green glass border how will I get a green glass background of the same style?</p>
<p>Is it even possible to do this without calls to the Windows API?</p>
<p>I am thinking of <a href="http://www.thirteen23.com/experiences/desktop/continuum/" rel="nofollow">something like this</a></p>
http://stackoverflow.com/questions/1837539/how-do-i-select-an-item-in-my-wpf-combobox-based-on-my-data-binding2How do I select an item in my WPF ComboBox based on my data binding?Abby Fichtner2009-12-03T04:00:23Z2009-12-04T15:47:41Z
<p>I've got my DataContext set to a Book object. Book has properties: Title, Category.</p>
<p>I've got a CollectionViewSource "categoryList" that holds a list of Categories.</p>
<p><strong>Question</strong>: How do I <em>select</em> the book's Category in this combobox?</p>
<pre><code><TextBox Text="{Binding Path=Title}"/>
<ComboBox SelectedValuePath="Id"
SelectedValue="{Binding Path=Category.Id}"
SelectedItem="{Binding Path=Category}"
ItemsSource="{Binding Source = {StaticResource categoryList}}"
DisplayMemberPath="Name" />
</code></pre>
<p>The code above displays the Book's title correctly and then it displays the list of category names in the combobox. But it does not select the Book's Category. It instead just selects the first item in the list.</p>
http://stackoverflow.com/questions/862829/what-is-the-advantage-of-setting-datacontext-in-code-instead-of-xaml1What is the advantage of setting DataContext in code instead of XAML?Edward Tanguay2009-05-14T11:31:45Z2009-12-04T15:25:04Z
<p>There seem to be two main ways to define DataContext in WPF:</p>
<ul>
<li>either <strong>in code</strong> like this:</li>
</ul>
<p>App.xaml.cs (taken from the <a href="http://www.codeplex.com/wpf/Release/ProjectReleases.aspx?ReleaseId=14962" rel="nofollow">WPF MVVM Toolkit template</a>):</p>
<pre><code>public partial class App : Application
{
private void OnStartup(object sender, StartupEventArgs e)
{
// Create the ViewModel and expose it using the View's DataContext
MainView mainView = new MainView();
MainViewModel mainViewModel = new MainViewModel();
mainViewModel.LoadCustomers("c:\\testdata2\\Customers.xml");
mainView.DataContext = mainViewModel;
mainView.Show();
}
}
</code></pre>
<ul>
<li>or <strong>in XAML</strong> like this:</li>
</ul>
<p>Window1.xaml:</p>
<pre><code><Window.Resources>
<ObjectDataProvider x:Key="FileNames" ObjectType="{x:Type local:OldLibrary}" MethodName="GetFileNames"/>
<ObjectDataProvider x:Key="Directories" ObjectType="{x:Type local:OldLibrary}" MethodName="GetDirectories"/>
</Window.Resources>
<DockPanel>
<StackPanel DockPanel.Dock="Top" HorizontalAlignment="Left" Orientation="Horizontal">
<StackPanel.DataContext>
<local:CustomerViewModel/>
</StackPanel.DataContext>
<TextBlock Text="{Binding Path=FirstName}"/>
<TextBlock Text=" "/>
<TextBlock Text="{Binding Path=LastName}"/>
</StackPanel>
<StackPanel DockPanel.Dock="Top" HorizontalAlignment="Left" Orientation="Horizontal" VerticalAlignment="top">
<ListBox ItemsSource="{Binding Source={StaticResource FileNames}}"/>
</StackPanel>
<StackPanel DockPanel.Dock="Top" HorizontalAlignment="Left" Orientation="Horizontal" VerticalAlignment="top">
<ComboBox ItemsSource="{Binding Source={StaticResource Directories}}" SelectedIndex="0"/>
</StackPanel>
<StackPanel DockPanel.Dock="Top" HorizontalAlignment="Left" Orientation="Horizontal" VerticalAlignment="top">
<StackPanel.DataContext>
<local:SystemInformationViewModel/>
</StackPanel.DataContext>
<TextBlock Text="{Binding Path=CurrentTime}"/>
</StackPanel>
</DockPanel>
</code></pre>
<p>One advantage that defining the DataContext in XAML has is that <strong>your data shows up in Expression Blend design mode</strong> and Expression Blend allows you to do quite a lot within the GUI e.g. choose fields from your datasource, etc. <a href="http://tanguay.info/web/index.php?pg=codeExamples&id=176" rel="nofollow">as shown here</a>.</p>
<p>I have read that binding <strong>ADO.NET objects cannot be bound in XAML</strong> (although I don't see why you could write a minimal wrapper for them to which you could bind from XAML).</p>
<p>Strange that the <strong>WPF Team in making the WPF MVVM templates define the DataContext in code</strong> which very quickly makes it impracticable to edit your Views in Expression Blend, since your data doesn't show up in design mode which is often a significant part of the layout.</p>
<p>So I'm thinking there <strong>must be some advantage</strong> down the road to setting the DataContext in code instead of XAML, anyone know what it is?</p>
http://stackoverflow.com/questions/1795612/center-multiple-xaml-paths-into-view0Center multiple XAML paths into viewRobbert Dam2009-11-25T09:11:35Z2009-12-04T08:10:40Z
<p>Now this question looks similar to the question I've <a href="http://stackoverflow.com/questions/1789321/fit-xaml-path-into-view">asked here</a>, however, this time I have multiple Path objects. I want to create a control that centers the paths nicely. Example:</p>
<pre><code><Grid>
<Path Stroke="Black" Data="M 3,3 L 7,4 3,12 3,3" />
<Path Stroke="Black" Data="M 3,6 L 7,4 12,6 3,6" />
</Grid>
</code></pre>
<p>Is there an easy way to achive this?</p>
http://stackoverflow.com/questions/1130113/how-to-add-multiple-toolbox-controls-in-xaml0How to add multiple toolbox controls in xamlAditya2009-07-15T08:28:35Z2009-12-04T07:00:03Z
<p><P>Hi ,</P>
<P>I added <Image> // included an image in the window.</Image></P>
<P>If I wish to add a label just below the image and few other controls, how can i do it?</p>
<p>The XAML Code is shown here.</p>
<p></p>
<pre><code> <Image
Name="imgClientPhoto"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Width="auto"
Height="auto"
Grid.Column="0"
Grid.Row="0"
Margin="0" Source="D:\pic1.gif" MinWidth="450" MinHeight="100" Grid.IsSharedSizeScope="True">
</Image>
<Label>
</Label>
</code></pre>
<p></p>
<p>I added just below the , but an error is seen "The property "content" is set more than once.</p>
<p>Please help me to correct this error.</p>
<p>My intention is to add an image at the top(title), then below it a label,then a dropdown box, treeview.. so on.. </p>
<p>Please help the good way to work on this.</p>
<p>Thanks
Ramm</p>
<p></P></p>