This commit is contained in:
Antony Male 2014-04-23 17:47:42 +01:00
parent f7210b8aa9
commit 580ba7f865
16 changed files with 16 additions and 16 deletions

View File

@ -1,7 +1,7 @@
<Window x:Class="Stylet.Samples.Hello.ShellView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:s="http://github.com/canton7/Stylet"
xmlns:s="https://github.com/canton7/Stylet"
Height="300" Width="300">
<StackPanel>
<TextBox Text="{Binding Name, UpdateSourceTrigger=PropertyChanged}"/>

View File

@ -1,7 +1,7 @@
<Window x:Class="Stylet.Samples.HelloDialog.Dialog1View"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:s="http://github.com/canton7/Stylet"
xmlns:s="https://github.com/canton7/Stylet"
Title="Dialog1View" Height="145" Width="300">
<DockPanel LastChildFill="False" Margin="10">
<DockPanel DockPanel.Dock="Top">

View File

@ -1,7 +1,7 @@
<Window x:Class="Stylet.Samples.HelloDialog.ShellView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:s="http://github.com/canton7/Stylet"
xmlns:s="https://github.com/canton7/Stylet"
Title="ShellView" Height="300" Width="300">
<DockPanel LastChildFill="False" Margin="10">
<DockPanel DockPanel.Dock="Top">

View File

@ -1,7 +1,7 @@
<Window x:Class="Stylet.Samples.MasterDetail.ShellView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:s="http://github.com/canton7/Stylet"
xmlns:s="https://github.com/canton7/Stylet"
Title="ShellView" Height="200" Width="400">
<DockPanel>
<DockPanel DockPanel.Dock="Left">

View File

@ -4,7 +4,7 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:redditapi="clr-namespace:Stylet.Samples.RedditBrowser.RedditApi"
xmlns:s="http://github.com/canton7/Stylet"
xmlns:s="https://github.com/canton7/Stylet"
xmlns:uc="clr-namespace:Stylet.Samples.RedditBrowser.UserControls"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">

View File

@ -3,7 +3,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:s="http://github.com/canton7/Stylet"
xmlns:s="https://github.com/canton7/Stylet"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<DockPanel>

View File

@ -1,7 +1,7 @@
<Window x:Class="Stylet.Samples.RedditBrowser.Pages.ShellView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:s="http://github.com/canton7/Stylet"
xmlns:s="https://github.com/canton7/Stylet"
Title="ShellView" Height="500" Width="500">
<DockPanel>
<GroupBox DockPanel.Dock="Top" Header="Navigate to">

View File

@ -3,7 +3,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:s="http://github.com/canton7/Stylet"
xmlns:s="https://github.com/canton7/Stylet"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<Grid>

View File

@ -3,7 +3,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:s="http://github.com/canton7/Stylet"
xmlns:s="https://github.com/canton7/Stylet"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<DockPanel LastChildFill="False">

View File

@ -1,7 +1,7 @@
<Window x:Class="Stylet.Samples.TabNavigation.ShellView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:s="http://github.com/canton7/Stylet"
xmlns:s="https://github.com/canton7/Stylet"
Title="ShellView" Height="300" Width="300">
<Grid>
<TabControl Style="{StaticResource StyletConductorTabControl}"/>

View File

@ -23,7 +23,7 @@ using System.Windows.Markup;
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("a557a739-6b61-44d2-a431-889bc11aac9e")]
[assembly: XmlnsDefinition("http://github.com/canton7/Stylet", "Stylet")]
[assembly: XmlnsDefinition("https://github.com/canton7/Stylet", "Stylet")]
// Version information for an assembly consists of the following four values:
//

View File

@ -1,7 +1,7 @@
<Window x:Class="StyletIntegrationTests.Actions.ActionsView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:s="http://github.com/canton7/Stylet"
xmlns:s="https://github.com/canton7/Stylet"
Title="ActionsView" Height="300" Width="300">
<DockPanel LastChildFill="False">
<GroupBox DockPanel.Dock="Top" Header="CommandAction" Padding="10">

View File

@ -1,7 +1,7 @@
<Window x:Class="StyletIntegrationTests.ShellView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:s="http://github.com/canton7/Stylet"
xmlns:s="https://github.com/canton7/Stylet"
Title="ShellView" Height="500" Width="500">
<DockPanel LastChildFill="False">
<GroupBox DockPanel.Dock="Top" Header="ShowDialog and DialogResult" Padding="10">

View File

@ -1,7 +1,7 @@
<Window x:Class="StyletIntegrationTests.ShowDialogAndDialogResult.DialogView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:s="http://github.com/canton7/Stylet"
xmlns:s="https://github.com/canton7/Stylet"
Title="DialogView" Height="200" Width="300">
<DockPanel Margin="20" LastChildFill="False">
<TextBlock DockPanel.Dock="Top" TextWrapping="Wrap">Choose the desired DialogResult, then close the dialog.</TextBlock>

View File

@ -1,7 +1,7 @@
<Window x:Class="StyletIntegrationTests.WindowDisplayNameBound.WindowView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:s="http://github.com/canton7/Stylet"
xmlns:s="https://github.com/canton7/Stylet"
Title="WindowView" Height="300" Width="300">
<DockPanel Margin="10" LastChildFill="False">
<TextBlock DockPanel.Dock="Top" TextWrapping="WrapWithOverflow">Press the button, and verify that the count in the window title increases. When you are done, close the window.</TextBlock>

View File

@ -1,7 +1,7 @@
<Window x:Class="StyletIntegrationTests.WindowGuardClose.WindowView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:s="http://github.com/canton7/Stylet"
xmlns:s="https://github.com/canton7/Stylet"
Title="WindowView" Height="300" Width="300">
<DockPanel Margin="10">
<TextBlock DockPanel.Dock="Top" TextWrapping="WrapWithOverflow">Leave the checkbox unchecked, then close the window using the red X at the top. It should not close.</TextBlock>