Commit a49bab94 authored by Greg Pettyjohn's avatar Greg Pettyjohn
Browse files

Renamed DeviceLab to SampleDeviceCollection

parent da099b25
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
<Application x:Class="DeviceLab.App"
<Application x:Class="SampleDeviceCollection.App"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:local="clr-namespace:DeviceLab"
             xmlns:local="clr-namespace:SampleDeviceCollection"
             StartupUri="MainWindow.xaml">
    <Application.Resources>
        <ResourceDictionary Source="Themes\CustomStyles.xaml" />
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@
//----------------------------------------------------------------------------------------------
using System.Windows;

namespace DeviceLab
namespace SampleDeviceCollection
{
    /// <summary>
    /// Interaction logic for App.xaml
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@
using System.Windows;
using System.Windows.Controls;

namespace DeviceLab
namespace SampleDeviceCollection
{
    /// <summary>
    /// A TextBox derrivative that automatically scrolls to end whenever new text is added.
+1 −1
Original line number Diff line number Diff line
<UserControl x:Class="DeviceLab.BindablePassword"
<UserControl x:Class="SampleDeviceCollection.BindablePassword"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
Loading