Click here to Skip to main content
15,881,882 members
Articles / Mobile Apps / Windows Phone 7

Presentation Patterns for XAML based Applications

Rate me:
Please Sign up or sign in to vote.
4.99/5 (44 votes)
17 Sep 2013CPOL23 min read 93.5K   1.5K   176  
Design patterns on the presentation layer for WPF, Silverlight and Windows Phone applications.
<?xml version="1.0" encoding="UTF-8" ?>
<!-- == FILE ================================================================
== name       : AssemblyBrowserView.Silverlight.xaml
== project    : Itenso Community
== created    : Jani Giannoudis - 2012.05.05
== language   : Microsoft eXtensible Application Markup Language
== environment: .NET 4.0
== copyright  : (c) 2004-2012 by Itenso GmbH, Switzerland
========================================================================= -->
<UserControl
	x:Class="Itenso.Community.XamlPatterns.Program.Examples.AssemblyBrowser.View.AssemblyBrowserView"
	xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
	xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
	xmlns:sdk="http://schemas.microsoft.com/winfx/2006/xaml/presentation/sdk"
	xmlns:XamlControls="clr-namespace:Itenso.Community.XamlPatterns.Controls;assembly=Itenso.Community.XamlPatterns.Controls">

	<UserControl.Resources>
		<sdk:HierarchicalDataTemplate
			x:Key="NameTemplate"
			ItemsSource="{Binding Path=Children}">
			<TextBlock
				Text="{Binding Name}" />
		</sdk:HierarchicalDataTemplate>
	</UserControl.Resources>

	<Grid>
		<Grid.RowDefinitions>
			<RowDefinition
				Height="Auto" />
			<RowDefinition
				Height="*" />
			<RowDefinition
				Height="Auto" />
		</Grid.RowDefinitions>

		<Grid
			Grid.Row="0">
			<Grid.ColumnDefinitions>
				<ColumnDefinition
					Width="*" />
				<ColumnDefinition
					Width="Auto" />
			</Grid.ColumnDefinitions>

			<StackPanel
				Grid.Column="0"
				Orientation="Horizontal">
			</StackPanel>

			<StackPanel
				Grid.Column="1"
				Orientation="Horizontal">
				<Button
					Content="Expand"
					MinWidth="60"
					Margin="5"
					Command="{Binding ExpandCommand, ElementName=AssembliesTree}" />
				<Button
					Content="Collapse"
					MinWidth="60"
					Margin="5"
					Command="{Binding CollapseCommand, ElementName=AssembliesTree}" />
			</StackPanel>
		</Grid>

		<XamlControls:ModelTreeView
			Grid.Row="1"
			x:Name="AssembliesTree"
			Margin="5,0"
			ItemsSource="{Binding Assemblies.Children}"
			ItemTemplate="{StaticResource NameTemplate}" />

		<!-- status bar -->
		<Grid
			Grid.Row="2">
			<Grid.ColumnDefinitions>
				<ColumnDefinition
					Width="*" />
			</Grid.ColumnDefinitions>
			<TextBlock
				Grid.Column="0"
				Margin="5,2"
				TextWrapping="Wrap"
				VerticalAlignment="Center"
				Text="{Binding SelectedItem, ElementName=AssembliesTree}" />
		</Grid>

	</Grid>

</UserControl>
<!-- == EOF ============================================================= -->

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Switzerland Switzerland
👨 Senior .NET Software Engineer

🚀 My Open Source Projects
- Time Period Library 👉 GitHub
- Payroll Engine 👉 GitHub

Feedback and contributions are welcome.



Comments and Discussions