Skip to content

Commit

Permalink
Using uri for xmlns registration
Browse files Browse the repository at this point in the history
  • Loading branch information
kevmoo committed Apr 19, 2011
1 parent 7f576dc commit 9e9c513
Show file tree
Hide file tree
Showing 29 changed files with 77 additions and 64 deletions.
3 changes: 3 additions & 0 deletions Common/PixelLab.Common.csproj
Expand Up @@ -33,6 +33,9 @@
<Compile Include="..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\XamlAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="BrushHelper.cs" />
<Compile Include="ColorHelper.cs" />
<Compile Include="CommandHelpers.cs" />
Expand Down
3 changes: 3 additions & 0 deletions Common/PixelLab.Common_SL4.csproj
Expand Up @@ -36,6 +36,9 @@
<Compile Include="..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\XamlAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\Core\ActionOnDispose.cs">
<Link>ActionOnDispose.cs</Link>
</Compile>
Expand Down
5 changes: 2 additions & 3 deletions Demo/Silverlight/EditableTextBlockPage.xaml
Expand Up @@ -2,8 +2,7 @@
x:Class="PixelLab.SL.Demo.EditableTextBlockPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:bot="clr-namespace:PixelLab.Common;assembly=PixelLab.Common_SL4"
xmlns:sl="clr-namespace:PixelLab.SL;assembly=PixelLab.SL"
xmlns:bot="http://schemas.thinkpixellab.com/2011/xaml/presentation"

xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Expand All @@ -15,7 +14,7 @@
</UserControl.Resources>

<StackPanel VerticalAlignment="Center" HorizontalAlignment="Center">
<sl:EditableTextBlock
<bot:EditableTextBlock
Width="200" Margin="10"
IsReadOnly="{Binding Path=IsChecked, ElementName=_readOnlyCheckBox, Mode=TwoWay}"
IsTabStop="{Binding Path=IsChecked, ElementName=_readOnlyCheckBox, Mode=TwoWay, Converter={StaticResource enumConverter}, ConverterParameter='true->false,true'}"
Expand Down
16 changes: 9 additions & 7 deletions Demo/Silverlight/FlipControlPage.xaml
@@ -1,11 +1,13 @@
<UserControl
x:Class="PixelLab.SL.Demo.FlipControlPage"
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" d:DesignHeight="300" d:DesignWidth="400" Background="Gray"
xmlns:lib="clr-namespace:PixelLab.SL;assembly=PixelLab.SL" >
x:Class="PixelLab.SL.Demo.FlipControlPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Background="Gray"
xmlns:lib="http://schemas.thinkpixellab.com/2011/xaml/presentation"

xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" d:DesignHeight="300" d:DesignWidth="400" >
<UserControl.Resources>
<Style x:Key="PageButtonStyle" TargetType="RepeatButton">
<Setter Property="VerticalAlignment" Value="Bottom"/>
Expand Down
12 changes: 6 additions & 6 deletions Demo/Silverlight/PanZoomPage.xaml
Expand Up @@ -2,23 +2,23 @@
x:Class="PixelLab.SL.Demo.PanZoomPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:plsl="clr-namespace:PixelLab.SL;assembly=PixelLab.SL"
xmlns:bot="http://schemas.thinkpixellab.com/2011/xaml/presentation"

xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="400">

<Grid x:Name="LayoutRoot" Background="White">
<plsl:PanZoomControl x:Name="PanZoom" Background="Transparent" MajorGridLineColor="#ebf4e9" MinorGridLineColor="#ebf4e9">
<plsl:AsBigAsYouWantPanel SizeChanged="AsBigAsYouWantPanel_SizeChanged">
<bot:PanZoomControl x:Name="PanZoom" Background="Transparent" MajorGridLineColor="#ebf4e9" MinorGridLineColor="#ebf4e9">
<bot:AsBigAsYouWantPanel SizeChanged="AsBigAsYouWantPanel_SizeChanged">
<TextBlock Text="Monkey!" FontSize="50" />
</plsl:AsBigAsYouWantPanel>
</plsl:PanZoomControl>
</bot:AsBigAsYouWantPanel>
</bot:PanZoomControl>

<StackPanel Orientation="Horizontal" VerticalAlignment="Top" HorizontalAlignment="Right">
<Button Content="1:1" Command="{Binding Path=ResetCommand, ElementName=PanZoom}" Padding="5" />
<plsl:DiscreteSlider x:Name="ZoomSlider" Minimum="0.2" Maximum="2" SmallChange="0.2" LargeChange="0.2" Value="{Binding Path=Scale, ElementName=PanZoom, Mode=TwoWay}" Width="200" />
<bot:DiscreteSlider x:Name="ZoomSlider" Minimum="0.2" Maximum="2" SmallChange="0.2" LargeChange="0.2" Value="{Binding Path=Scale, ElementName=PanZoom, Mode=TwoWay}" Width="200" />
</StackPanel>

</Grid>
Expand Down
31 changes: 16 additions & 15 deletions Demo/Silverlight/SpriteButtonPage.xaml
@@ -1,15 +1,16 @@
<UserControl
x:Class="PixelLab.SL.Demo.SpriteButtonPage"
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"
d:DesignHeight="300" d:DesignWidth="400"
xmlns:sl="clr-namespace:PixelLab.SL;assembly=PixelLab.SL">
x:Class="PixelLab.SL.Demo.SpriteButtonPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:bot="http://schemas.thinkpixellab.com/2011/xaml/presentation"

xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="400">

<UserControl.Resources>
<Style TargetType="sl:SpriteButton" x:Key="spriteStyle">
<Style TargetType="bot:SpriteButton" x:Key="spriteStyle">
<Setter Property="ImageSource" Value="/PixelLab.SL.Demo;component/Assets/sprite.png"/>
<Setter Property="Width" Value="32"/>
<Setter Property="Height" Value="32"/>
Expand All @@ -24,12 +25,12 @@
<Grid x:Name="LayoutRoot" Background="White" HorizontalAlignment="Center" VerticalAlignment="Center">

<StackPanel Orientation="Horizontal" >
<sl:SpriteButton Style="{StaticResource spriteStyle}" SpriteIndex="0" />
<sl:SpriteButton Style="{StaticResource spriteStyle}" SpriteIndex="1" />
<sl:SpriteButton Style="{StaticResource spriteStyle}" SpriteIndex="2" />
<sl:SpriteButton Style="{StaticResource spriteStyle}" SpriteIndex="3" />
<sl:SpriteButton Style="{StaticResource spriteStyle}" SpriteIndex="4" />
<sl:SpriteButton Style="{StaticResource spriteStyle}" SpriteIndex="5" />
<bot:SpriteButton Style="{StaticResource spriteStyle}" SpriteIndex="0" />
<bot:SpriteButton Style="{StaticResource spriteStyle}" SpriteIndex="1" />
<bot:SpriteButton Style="{StaticResource spriteStyle}" SpriteIndex="2" />
<bot:SpriteButton Style="{StaticResource spriteStyle}" SpriteIndex="3" />
<bot:SpriteButton Style="{StaticResource spriteStyle}" SpriteIndex="4" />
<bot:SpriteButton Style="{StaticResource spriteStyle}" SpriteIndex="5" />
</StackPanel>

</Grid>
Expand Down
5 changes: 2 additions & 3 deletions Demo/Wpf/AnimatingTilePanelPage.xaml
Expand Up @@ -2,15 +2,14 @@
x:Class="PixelLab.Wpf.Demo.AnimatingTilePanelPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:common="clr-namespace:PixelLab.Common;assembly=PixelLab.Common"
xmlns:lib="clr-namespace:PixelLab.Wpf;assembly=PixelLab.Wpf"
xmlns:lib="http://schemas.thinkpixellab.com/2011/xaml/presentation"
Name="m_page">
<Page.Resources>
<Style TargetType="Rectangle">
<Setter Property="Margin" Value="5"/>
</Style>

<common:RoundDoubleConverter x:Key="RoundDoubleConverter"/>
<lib:RoundDoubleConverter x:Key="RoundDoubleConverter"/>

<Style TargetType="TextBox">
<Setter Property="Margin" Value="1"/>
Expand Down
2 changes: 1 addition & 1 deletion Demo/Wpf/App.xaml
Expand Up @@ -2,7 +2,7 @@
x:Class="PixelLab.Wpf.Demo.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:lib="clr-namespace:PixelLab.Wpf;assembly=PixelLab.Wpf"
xmlns:lib="http://schemas.thinkpixellab.com/2011/xaml/presentation"
StartupUri="MainPage.xaml">

<Application.Resources>
Expand Down
2 changes: 1 addition & 1 deletion Demo/Wpf/BlockBarPage.xaml
@@ -1,7 +1,7 @@
<Page
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:lib="clr-namespace:PixelLab.Wpf;assembly=PixelLab.Wpf"
xmlns:lib="http://schemas.thinkpixellab.com/2011/xaml/presentation"
xmlns:core="clr-namespace:PixelLab.Core"
core:DemoMetadataProperties.DemoName="BlockBar Control"
core:DemoMetadataProperties.DemoDescription="Sometimes you just want a control that does its own rendering without worrying about a template. This is an example of a control that supports all of the standard data binding tricks and also draws itself. A baseclass is used to centralize common infrastructure.">
Expand Down
2 changes: 1 addition & 1 deletion Demo/Wpf/ColorPicker/ColorPickerPage.xaml
@@ -1,7 +1,7 @@
<Page
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:lib="clr-namespace:PixelLab.Wpf;assembly=PixelLab.Wpf"
xmlns:lib="http://schemas.thinkpixellab.com/2011/xaml/presentation"
xmlns:local="clr-namespace:PixelLab.Wpf.Demo"
xmlns:core="clr-namespace:PixelLab.Core"
core:DemoMetadataProperties.DemoName="ColorPicker Control"
Expand Down
5 changes: 2 additions & 3 deletions Demo/Wpf/Graph/GraphPage.xaml
@@ -1,13 +1,12 @@
<Page x:Class="PixelLab.Wpf.Demo.GraphPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:common="clr-namespace:PixelLab.Common;assembly=PixelLab.Common"
xmlns:lib="clr-namespace:PixelLab.Wpf;assembly=PixelLab.Wpf"
xmlns:lib="http://schemas.thinkpixellab.com/2011/xaml/presentation"
xmlns:local="clr-namespace:PixelLab.Wpf.Demo"
xmlns:sys="clr-namespace:System;assembly=mscorlib">
<Page.Resources>

<common:RoundDoubleConverter x:Key="RoundDoubleConverter"/>
<lib:RoundDoubleConverter x:Key="RoundDoubleConverter"/>
<local:NodeTemplateSelector x:Key="nodeTemplateSelector" />
<local:NodeColorConverter x:Key="NodeColorConverter"/>

Expand Down
2 changes: 1 addition & 1 deletion Demo/Wpf/InfoTextBoxPage.xaml
@@ -1,7 +1,7 @@
<Page
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:lib="clr-namespace:PixelLab.Wpf;assembly=PixelLab.Wpf"
xmlns:lib="http://schemas.thinkpixellab.com/2011/xaml/presentation"
xmlns:core="clr-namespace:PixelLab.Core"
core:DemoMetadataProperties.DemoName="Info TextBox"
core:DemoMetadataProperties.DemoDescription="When should I build a custom control? This is a question I get a lot. I think InfoTextBox is a great example of a where a custom control adds a lot of value. You'll notice that I didn't start from scratch. I simply added a couple of properties to the existing TextBox. The properties I add are pretty boring, actually, just HasText (bool) and TextBoxInfo (string). The magic comes when I leverage these new properties in a new ControlTemplate for InfoTextBox. I think you'll agree that the results are pretty cool.">
Expand Down
2 changes: 1 addition & 1 deletion Demo/Wpf/Interactive3DPage.xaml
@@ -1,7 +1,7 @@
<Page x:Class="PixelLab.Wpf.Demo.Interactive3DPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:lib="clr-namespace:PixelLab.Wpf;assembly=PixelLab.Wpf">
xmlns:lib="http://schemas.thinkpixellab.com/2011/xaml/presentation">

<lib:TreeMap3DUserControl Name="m_treeMap3DUserControl"/>

Expand Down
2 changes: 1 addition & 1 deletion Demo/Wpf/ListPagerPage.xaml
@@ -1,7 +1,7 @@
<Page x:Class="PixelLab.Wpf.Demo.ListPagerPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:lib="clr-namespace:PixelLab.Wpf;assembly=PixelLab.Wpf">
xmlns:lib="http://schemas.thinkpixellab.com/2011/xaml/presentation">
<Page.Resources>
<lib:UIListPager x:Key="listPager" PageSize="20" />

Expand Down
2 changes: 1 addition & 1 deletion Demo/Wpf/MainPage.xaml
Expand Up @@ -3,7 +3,7 @@
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:PixelLab.Demo.Core"
xmlns:lib="clr-namespace:PixelLab.Wpf;assembly=PixelLab.Wpf"
xmlns:lib="http://schemas.thinkpixellab.com/2011/xaml/presentation"
ShowsNavigationUI="False" WindowTitle="The WPF Bag of Tricks - by Pixel Lab" Background="#00AB5B5B">
<Page.Resources>

Expand Down
2 changes: 1 addition & 1 deletion Demo/Wpf/NotifyWorkerPage.xaml
@@ -1,7 +1,7 @@
<Page x:Class="PixelLab.Wpf.Demo.NotifyWorkerPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:common="clr-namespace:PixelLab.Common;assembly=PixelLab.Common">
xmlns:common="http://schemas.thinkpixellab.com/2011/xaml/presentation">

<Page.Resources>

Expand Down
2 changes: 1 addition & 1 deletion Demo/Wpf/NumericUpDownPage.xaml
@@ -1,7 +1,7 @@
<Page
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:lib="clr-namespace:PixelLab.Wpf;assembly=PixelLab.Wpf"
xmlns:lib="http://schemas.thinkpixellab.com/2011/xaml/presentation"
xmlns:core="clr-namespace:PixelLab.Core"
core:DemoMetadataProperties.DemoName="NumericUpDown Control"
core:DemoMetadataProperties.DemoDescription="NumericUpDown is a control I am frequently asked about, so I thought I'd write it. I was briefly tempted to subclass RangeBase for this, but at the end of the day, one really wants Decimal to be the base value, and RangeBase uses Double. There's quite a bit going on here: lot's of nested, styled controls. Binding. Commands. RoutedEvents. DependencyProperty Coercion. Like InfoTextBox, this control and its resources lives in an external library. Feel free to reuse it. This is still a work in progress, but I think most of the work is in the style (maybe a little to handle up-down arrow keys).">
Expand Down
2 changes: 1 addition & 1 deletion Demo/Wpf/OrgTree/OrgTreePage.xaml
@@ -1,7 +1,7 @@
<Page x:Class="PixelLab.Wpf.Demo.OrgTree.OrgTreePage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:lib="clr-namespace:PixelLab.Wpf;assembly=PixelLab.Wpf"
xmlns:lib="http://schemas.thinkpixellab.com/2011/xaml/presentation"
xmlns:local="clr-namespace:PixelLab.Wpf.Demo.OrgTree">

<Page.Resources>
Expand Down
2 changes: 1 addition & 1 deletion Demo/Wpf/ReorderListboxPage.xaml
@@ -1,7 +1,7 @@
<Page x:Class="PixelLab.Wpf.Demo.ReorderListBoxPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:lib="clr-namespace:PixelLab.Wpf;assembly=PixelLab.Wpf">
xmlns:lib="http://schemas.thinkpixellab.com/2011/xaml/presentation">

<Page.Resources>
<DataTemplate DataType="{x:Type SolidColorBrush}">
Expand Down
2 changes: 1 addition & 1 deletion Demo/Wpf/RevealPage.xaml
Expand Up @@ -2,7 +2,7 @@
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
xmlns:lib="clr-namespace:PixelLab.Wpf;assembly=PixelLab.Wpf"
xmlns:lib="http://schemas.thinkpixellab.com/2011/xaml/presentation"
xmlns:core="clr-namespace:PixelLab.Core"
core:DemoMetadataProperties.DemoName="Reveal"
core:DemoMetadataProperties.DemoDescription="This is a great example of how a custom widget--namely, Reveal--can be used in a number of places. TreeView and Expander, for example.">
Expand Down
2 changes: 1 addition & 1 deletion Demo/Wpf/Set/SetPage.xaml
Expand Up @@ -2,7 +2,7 @@
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:app="clr-namespace:PixelLab.Wpf.Demo.Set"
xmlns:lib="clr-namespace:PixelLab.Wpf;assembly=PixelLab.Wpf"
xmlns:lib="http://schemas.thinkpixellab.com/2011/xaml/presentation"
WindowTitle="WPF Set - 2008-01-30" ShowsNavigationUI="false">

<Page.Background>
Expand Down
2 changes: 1 addition & 1 deletion Demo/Wpf/ShowElementPage.xaml
@@ -1,7 +1,7 @@
<Page x:Class="PixelLab.Wpf.Demo.ShowElementPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:lib="clr-namespace:PixelLab.Wpf;assembly=PixelLab.Wpf">
xmlns:lib="http://schemas.thinkpixellab.com/2011/xaml/presentation">

<lib:ShowElement Name="m_showElement"/>

Expand Down
2 changes: 1 addition & 1 deletion Demo/Wpf/TreeMapPanelPage.xaml
Expand Up @@ -2,7 +2,7 @@
x:Class="PixelLab.Wpf.Demo.TreeMapPanelPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:lib="clr-namespace:PixelLab.Wpf;assembly=PixelLab.Wpf">
xmlns:lib="http://schemas.thinkpixellab.com/2011/xaml/presentation">

<lib:TreeMapPanel Name="m_treeMap"/>

Expand Down
2 changes: 1 addition & 1 deletion Demo/Wpf/TreeViewHelperClasses/TreeViewHelperPage.xaml
@@ -1,7 +1,7 @@
<Page x:Class="PixelLab.Wpf.Demo.TreeViewHelperPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:tvh="clr-namespace:PixelLab.Wpf;assembly=PixelLab.Wpf">
xmlns:tvh="http://schemas.thinkpixellab.com/2011/xaml/presentation">
<Page.Resources>
<Style TargetType="{x:Type Button}">
<Setter Property="Margin" Value="3"/>
Expand Down
2 changes: 1 addition & 1 deletion Demo/Wpf/ZapPage.xaml
@@ -1,7 +1,7 @@
<Page x:Class="PixelLab.Wpf.Demo.ZapPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:lib="clr-namespace:PixelLab.Wpf;assembly=PixelLab.Wpf"
xmlns:lib="http://schemas.thinkpixellab.com/2011/xaml/presentation"
xmlns:local="clr-namespace:PixelLab.Demo.Core"
xmlns:sys="clr-namespace:System;assembly=mscorlib">
<Page.Resources>
Expand Down
4 changes: 3 additions & 1 deletion Silverlight/Properties/AssemblyInfo.cs
@@ -1 +1,3 @@

using System.Windows.Markup;

[assembly: XmlnsDefinition("http://schemas.thinkpixellab.com/2011/xaml/presentation", "PixelLab.SL")]

0 comments on commit 9e9c513

Please sign in to comment.