Skip to content

Commit

Permalink
Improve experience for keyboard and screen reader users
Browse files Browse the repository at this point in the history
  • Loading branch information
jenoola committed Aug 21, 2018
1 parent 679e75c commit 9f1dfb4
Show file tree
Hide file tree
Showing 20 changed files with 461 additions and 365 deletions.
6 changes: 0 additions & 6 deletions tools/DeviceExplorer/DeviceExplorer.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27130.2027
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Docs", "Docs", "{D557470D-B427-49B7-B133-DBD9E4BA3DAD}"
ProjectSection(SolutionItems) = preProject
..\..\service\Microsoft.Azure.Devices\AmqpFeedbackReceiver.cs = ..\..\service\Microsoft.Azure.Devices\AmqpFeedbackReceiver.cs
doc\DeviceExplorer_Requirements.docx = doc\DeviceExplorer_Requirements.docx
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DeviceExplorer", "DeviceExplorer\DeviceExplorer.csproj", "{6EC48194-96D3-4B82-976D-F7957AF58AC4}"
EndProject
Global
Expand Down
5 changes: 4 additions & 1 deletion tools/DeviceExplorer/DeviceExplorer/CenterDialog.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using System;
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System;
using System.Runtime.InteropServices;
using System.Text;
using System.Windows.Forms;
Expand Down
115 changes: 61 additions & 54 deletions tools/DeviceExplorer/DeviceExplorer/CreateDeviceForm.Designer.cs

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

6 changes: 5 additions & 1 deletion tools/DeviceExplorer/DeviceExplorer/CreateDeviceForm.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
using Microsoft.Azure.Devices;
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using Microsoft.Azure.Devices;
using Microsoft.Azure.Devices.Common;

using System;
using System.Windows.Forms;

Expand Down
6 changes: 5 additions & 1 deletion tools/DeviceExplorer/DeviceExplorer/DeviceCreatedForm.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using Microsoft.Azure.Devices;
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using Microsoft.Azure.Devices;

using System;
using System.Windows.Forms;

Expand Down
5 changes: 4 additions & 1 deletion tools/DeviceExplorer/DeviceExplorer/DeviceEntity.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
namespace DeviceExplorer
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

namespace DeviceExplorer
{
using System;

Expand Down
9 changes: 6 additions & 3 deletions tools/DeviceExplorer/DeviceExplorer/DeviceTwinAndMethod.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
using Microsoft.Azure.Devices;
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using Microsoft.Azure.Devices;

using Newtonsoft.Json;

using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
Expand Down
Loading

0 comments on commit 9f1dfb4

Please sign in to comment.