Skip to content

Commit

Permalink
Desktop: Modified Graphics Layers samples:
Browse files Browse the repository at this point in the history
- Removed GraphicsLayerWindow sample
- Renamed CsvLayerSample, GeoRssLayerSample, GraphicsLayerSelection
  • Loading branch information
gdestigter committed Apr 23, 2014
1 parent 7ea7f21 commit fc26b4c
Show file tree
Hide file tree
Showing 10 changed files with 34 additions and 477 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -229,14 +229,14 @@
<Compile Include="Samples\GraphicsLayers\AddInteractively.xaml.cs">
<DependentUpon>AddInteractively.xaml</DependentUpon>
</Compile>
<Compile Include="Samples\GraphicsLayers\CSVLayerXaml.xaml.cs">
<DependentUpon>CSVLayerXaml.xaml</DependentUpon>
<Compile Include="Samples\GraphicsLayers\CsvLayerSample.xaml.cs">
<DependentUpon>CsvLayerSample.xaml</DependentUpon>
</Compile>
<Compile Include="Samples\GraphicsLayers\GeoRSSLayerWindow.xaml.cs">
<DependentUpon>GeoRSSLayerWindow.xaml</DependentUpon>
<Compile Include="Samples\GraphicsLayers\GeoRssLayerSample.xaml.cs">
<DependentUpon>GeoRssLayerSample.xaml</DependentUpon>
</Compile>
<Compile Include="Samples\GraphicsLayers\GraphcisLayerSelection.xaml.cs">
<DependentUpon>GraphcisLayerSelection.xaml</DependentUpon>
<Compile Include="Samples\GraphicsLayers\GraphicsLayerSelection.xaml.cs">
<DependentUpon>GraphicsLayerSelection.xaml</DependentUpon>
</Compile>
<Compile Include="Samples\GraphicsLayers\GraphicsHitTesting.xaml.cs">
<DependentUpon>GraphicsHitTesting.xaml</DependentUpon>
Expand All @@ -247,9 +247,6 @@
<Compile Include="Samples\GraphicsLayers\GraphicsLayerSample.xaml.cs">
<DependentUpon>GraphicsLayerSample.xaml</DependentUpon>
</Compile>
<Compile Include="Samples\GraphicsLayers\GraphicsLayerWindow.xaml.cs">
<DependentUpon>GraphicsLayerWindow.xaml</DependentUpon>
</Compile>
<Compile Include="Samples\GraphicsLayers\GraphicsMapTips.xaml.cs">
<DependentUpon>GraphicsMapTips.xaml</DependentUpon>
</Compile>
Expand Down Expand Up @@ -650,15 +647,15 @@
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Page Include="Samples\GraphicsLayers\CSVLayerXaml.xaml">
<Page Include="Samples\GraphicsLayers\CsvLayerSample.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Page Include="Samples\GraphicsLayers\GeoRSSLayerWindow.xaml">
<Page Include="Samples\GraphicsLayers\GeoRssLayerSample.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Page Include="Samples\GraphicsLayers\GraphcisLayerSelection.xaml">
<Page Include="Samples\GraphicsLayers\GraphicsLayerSelection.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
Expand All @@ -674,10 +671,6 @@
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Page Include="Samples\GraphicsLayers\GraphicsLayerWindow.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Page Include="Samples\GraphicsLayers\GraphicsMapTips.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<UserControl x:Class="ArcGISRuntimeSDKDotNet_DesktopSamples.Samples.CSVLayerXaml"
<UserControl x:Class="ArcGISRuntimeSDKDotNet_DesktopSamples.Samples.CsvLayerSample"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:esri="http://schemas.esri.com/arcgis/runtime/2013">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ namespace ArcGISRuntimeSDKDotNet_DesktopSamples.Samples
/// <title>CSV Layer</title>
/// <category>Layers</category>
/// <subcategory>Graphics Layers</subcategory>
public partial class CSVLayerXaml : UserControl
public partial class CsvLayerSample : UserControl
{
/// <summary>Initializes a new instance of the <see cref="CSVLayerXaml"/> class.</summary>
public CSVLayerXaml()
/// <summary>Initializes a new instance of the <see cref="CsvLayerSample"/> class.</summary>
public CsvLayerSample()
{
InitializeComponent();
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<UserControl x:Class="ArcGISRuntimeSDKDotNet_DesktopSamples.Samples.GeoRSSLayerWindow"
<UserControl x:Class="ArcGISRuntimeSDKDotNet_DesktopSamples.Samples.GeoRssLayerSample"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:esri="http://schemas.esri.com/arcgis/runtime/2013"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ namespace ArcGISRuntimeSDKDotNet_DesktopSamples.Samples
/// <title>GeoRSS Layer</title>
/// <category>Layers</category>
/// <subcategory>Graphics Layers</subcategory>
public partial class GeoRSSLayerWindow : UserControl
public partial class GeoRssLayerSample : UserControl
{
/// <summary>
/// Initializes a new instance of the <see cref="GeoRSSLayerWindow"/> class.
/// Initializes a new instance of the <see cref="GeoRssLayerSample"/> class.
/// </summary>
public GeoRSSLayerWindow()
public GeoRssLayerSample()
{
InitializeComponent();
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<UserControl x:Class="ArcGISRuntimeSDKDotNet_DesktopSamples.Samples.GraphcisLayerSelection"
<UserControl x:Class="ArcGISRuntimeSDKDotNet_DesktopSamples.Samples.GraphicsLayerSelection"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:esri="http://schemas.esri.com/arcgis/runtime/2013">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ namespace ArcGISRuntimeSDKDotNet_DesktopSamples.Samples
/// <title>Selection</title>
/// <category>Layers</category>
/// <subcategory>Graphics Layers</subcategory>
public partial class GraphcisLayerSelection : UserControl
public partial class GraphicsLayerSelection : UserControl
{
private Random _random = new Random();

/// <summary>Construct Graphics Layer Selection sample control</summary>
public GraphcisLayerSelection()
public GraphicsLayerSelection()
{
InitializeComponent();
CreateGraphics();
Expand Down

This file was deleted.

Loading

0 comments on commit fc26b4c

Please sign in to comment.