Skip to content

Commit

Permalink
Added Second Window
Browse files Browse the repository at this point in the history
  • Loading branch information
PProvost committed Jan 25, 2010
1 parent 5f56cea commit 624ecb9
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
8 changes: 8 additions & 0 deletions SecondWindow.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<Window x:Class="GitDemo.SecondWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="SecondWindow" Height="300" Width="300">
<Grid>

</Grid>
</Window>
26 changes: 26 additions & 0 deletions SecondWindow.xaml.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;

namespace GitDemo
{
/// <summary>
/// Interaction logic for SecondWindow.xaml
/// </summary>
public partial class SecondWindow : Window
{
public SecondWindow()
{
InitializeComponent();
}
}
}

0 comments on commit 624ecb9

Please sign in to comment.