From e36c501cb02c00d62ac094a6296fb6e14cdce302 Mon Sep 17 00:00:00 2001
From: danpker <danpker@gmail.com>
Date: Wed, 26 Jan 2011 01:07:30 +0000
Subject: [PATCH] fixed some weird reference problem

---
 RefuCate_WP7/RefuCate_WP7.csproj | 24 ------------------------
 RefuCate_WPF/MainWindow.xaml     |  6 ++++--
 2 files changed, 4 insertions(+), 26 deletions(-)

diff --git a/RefuCate_WP7/RefuCate_WP7.csproj b/RefuCate_WP7/RefuCate_WP7.csproj
index 9ff9bb8..c2b0318 100644
--- a/RefuCate_WP7/RefuCate_WP7.csproj
+++ b/RefuCate_WP7/RefuCate_WP7.csproj
@@ -58,30 +58,6 @@
     <Reference Include="system" />
     <Reference Include="System.Core" />
     <Reference Include="System.Net" />
-    <Reference Include="System.Windows.Controls.Data.DataForm.Toolkit">
-      <HintPath>..\..\..\..\..\..\Program Files\Microsoft SDKs\Silverlight\v4.0\Toolkit\Apr10\Bin\System.Windows.Controls.Data.DataForm.Toolkit.dll</HintPath>
-    </Reference>
-    <Reference Include="System.Windows.Controls.Data.Toolkit">
-      <HintPath>..\..\..\..\..\..\Program Files\Microsoft SDKs\Silverlight\v4.0\Toolkit\Apr10\Bin\System.Windows.Controls.Data.Toolkit.dll</HintPath>
-    </Reference>
-    <Reference Include="System.Windows.Controls.DataVisualization.Toolkit">
-      <HintPath>..\..\..\..\..\..\Program Files\Microsoft SDKs\Silverlight\v4.0\Toolkit\Apr10\Bin\System.Windows.Controls.DataVisualization.Toolkit.dll</HintPath>
-    </Reference>
-    <Reference Include="System.Windows.Controls.Input.Toolkit">
-      <HintPath>..\..\..\..\..\..\Program Files\Microsoft SDKs\Silverlight\v4.0\Toolkit\Apr10\Bin\System.Windows.Controls.Input.Toolkit.dll</HintPath>
-    </Reference>
-    <Reference Include="System.Windows.Controls.Layout.Toolkit">
-      <HintPath>..\..\..\..\..\..\Program Files\Microsoft SDKs\Silverlight\v4.0\Toolkit\Apr10\Bin\System.Windows.Controls.Layout.Toolkit.dll</HintPath>
-    </Reference>
-    <Reference Include="System.Windows.Controls.Theming.Toolkit">
-      <HintPath>..\..\..\..\..\..\Program Files\Microsoft SDKs\Silverlight\v4.0\Toolkit\Apr10\Bin\System.Windows.Controls.Theming.Toolkit.dll</HintPath>
-    </Reference>
-    <Reference Include="System.Windows.Controls.Toolkit">
-      <HintPath>..\..\..\..\..\..\Program Files\Microsoft SDKs\Silverlight\v4.0\Toolkit\Apr10\Bin\System.Windows.Controls.Toolkit.dll</HintPath>
-    </Reference>
-    <Reference Include="System.Windows.Controls.Toolkit.Internals">
-      <HintPath>..\..\..\..\..\..\Program Files\Microsoft SDKs\Silverlight\v4.0\Toolkit\Apr10\Bin\System.Windows.Controls.Toolkit.Internals.dll</HintPath>
-    </Reference>
     <Reference Include="System.Xml" />
     <Reference Include="System.Xml.Serialization" />
   </ItemGroup>
diff --git a/RefuCate_WPF/MainWindow.xaml b/RefuCate_WPF/MainWindow.xaml
index 2eada03..0a62d71 100644
--- a/RefuCate_WPF/MainWindow.xaml
+++ b/RefuCate_WPF/MainWindow.xaml
@@ -37,8 +37,10 @@
                         <TextBox Grid.Column="1" Grid.Row="1" x:Name="secondName" />
 
                     </Grid> 
-                    <Button x:Name="createPerson" Content="Create" Click="createPerson_Click" />
-                    <Button x:Name="listPeople" Content="List People" Click="listPeople_Click" />
+                    <StackPanel Orientation="Horizontal">
+                        <Button x:Name="createPerson" Content="Create" Click="createPerson_Click" />
+                        <Button x:Name="listPeople" Content="List People" Click="listPeople_Click" />
+                    </StackPanel>
                 </StackPanel>
             </TabItem>