diff --git a/SiMay.Core/Common/FileHelper.cs b/SiMay.Core/Common/FileHelper.cs index d6e0dfb1a649661dc972ce22b75c877e254cbd80..3fdff28ebc8f6294537c459de36552f707b66cbf 100644 --- a/SiMay.Core/Common/FileHelper.cs +++ b/SiMay.Core/Common/FileHelper.cs @@ -37,7 +37,7 @@ namespace SiMay.Core.Common len = len / 1024; } - string filesize = String.Format("{0:0.##} {1}", len, sizes[order]); + string filesize = String.Format("{0:0.00} {1}", len, sizes[order]); return filesize; } diff --git a/SiMay.Core/MessageHead.cs b/SiMay.Core/MessageHead.cs index e022b2bc72519f67fa72075b210d3adb5831456b..74fe27b2896c82eea7aa6108543342cdaa3abbba 100644 --- a/SiMay.Core/MessageHead.cs +++ b/SiMay.Core/MessageHead.cs @@ -55,6 +55,7 @@ namespace SiMay.Core S_SCREEN_GET_CLIPOARD_TEXT, //获取剪切板Text S_SCREEN_GET_INIT_BITINFO, //获取初始化屏幕信息 S_SCREEN_CTRL_ALT_DEL, //模拟Ctrl+Alt+Del + S_SCREEN_DELETE_WALLPAPER, //删除壁纸 C_SCREEN_BITINFO = 2000, //桌面大小信息 C_SCREEN_SCANCOMPLETE, //屏幕扫描完成 diff --git a/SiMay.RemoteClient.NewCore/ApplicationService/FileService.cs b/SiMay.RemoteClient.NewCore/ApplicationService/FileService.cs index 75780ab7763f5cfcae97c5e3c9ee357809ef7e8d..914c3e0a75b03606c13d9aa5e5a2bd3778dc335d 100644 --- a/SiMay.RemoteClient.NewCore/ApplicationService/FileService.cs +++ b/SiMay.RemoteClient.NewCore/ApplicationService/FileService.cs @@ -508,7 +508,9 @@ namespace SiMay.ServiceCore.ApplicationService Process.Start(file.FilePath); } catch { } - } + } + + [PacketHandler(MessageHead.S_FILE_REDIRION)] public void RedirtionHandler(TcpSocketSaeaSession session) diff --git a/SiMay.RemoteClient.NewCore/ApplicationService/ScreenService.cs b/SiMay.RemoteClient.NewCore/ApplicationService/ScreenService.cs index 02585cc1a61b917d033d0a02eb573559fdc1da00..d0e6fb1d57ba16512e9c7bef3086b1d42f7a6b1a 100644 --- a/SiMay.RemoteClient.NewCore/ApplicationService/ScreenService.cs +++ b/SiMay.RemoteClient.NewCore/ApplicationService/ScreenService.cs @@ -8,27 +8,24 @@ using SiMay.Core.ScreenSpy; using SiMay.Core.ScreenSpy.Entitys; using SiMay.ServiceCore.Attributes; using SiMay.ServiceCore.Extensions; -using SiMay.Serialize; using SiMay.Sockets.Tcp; using SiMay.Sockets.Tcp.Session; using System; using System.Drawing; -using System.Runtime.InteropServices; using System.Threading; using System.Windows.Forms; using static SiMay.ServiceCore.CommonWin32Api; using SiMay.ServiceCore.Win32; //using static SiMay.ServiceCore.Win32.User32; -using SiMay.Basic; using SiMay.ServiceCore.ApplicationService.Registry; - + namespace SiMay.ServiceCore.ApplicationService { [ServiceName("远程桌面")] [ServiceKey("RemoteDesktopJob")] public class ScreenService : ServiceManager, IApplicationService { - + private static string wallpaper = string.Empty; private int _bscanmode = 1; //0差异 1逐行 private bool _hasSystemAuthor = AppConfiguartion.HasSystemAuthority.Equals("true", StringComparison.OrdinalIgnoreCase); private ScreenSpy _spy; @@ -46,10 +43,18 @@ namespace SiMay.ServiceCore.ApplicationService case TcpSocketCompletionNotify.OnDataReceived: this._handlerBinder.InvokePacketHandler(session, session.CompletedBuffer.GetMessageHead(), this); break; - case TcpSocketCompletionNotify.OnClosed: + case TcpSocketCompletionNotify.OnClosed: + //User32.SystemParametersInfo(User32.SPI_SETDESKWALLPAPER, 0, System.Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData)+@"\Microsoft\Windows\Themes\TranscodedWallpaper", User32.SPIF_UPDATEINIFILE | User32.SPIF_SENDWININICHANGE); + User32.SystemParametersInfo(User32.SPI_SETDESKWALLPAPER, 0, wallpaper, User32.SPIF_UPDATEINIFILE | User32.SPIF_SENDWININICHANGE); this._handlerBinder.Dispose(); break; } + } + + [PacketHandler(MessageHead.S_GLOBAL_ONCLOSE)] + public void CloseSession(TcpSocketSaeaSession session) + { + this.CloseSession(); } [PacketHandler(MessageHead.S_GLOBAL_OK)] @@ -254,6 +259,23 @@ namespace SiMay.ServiceCore.ApplicationService break; } } + + [PacketHandler(MessageHead.S_SCREEN_DELETE_WALLPAPER)] + public void DeleteWallPaper(TcpSocketSaeaSession session) + { + wallpaper = new string('\0', 260); + User32.SystemParametersInfo(0x73, 260, wallpaper, 0); + wallpaper = wallpaper.Substring(0, wallpaper.IndexOf('\0')); + + + + User32.SystemParametersInfo(User32.SPI_SETDESKWALLPAPER, 0, "", 0); + + } + + + + //public void SendKeyDown(VirtualKey keyCode) //{ // var union = new InputUnion() diff --git a/SiMay.RemoteClient.NewCore/SiMay.ServiceCore.csproj b/SiMay.RemoteClient.NewCore/SiMay.ServiceCore.csproj index a89f6d22e7c506c844faffb48891d75739dedc61..75b57a29f0d4850fdb609ec32b35e372fa5b7ae0 100644 --- a/SiMay.RemoteClient.NewCore/SiMay.ServiceCore.csproj +++ b/SiMay.RemoteClient.NewCore/SiMay.ServiceCore.csproj @@ -1,249 +1,251 @@ - - - - - Debug - AnyCPU - {8D061D46-9E59-42B0-91DC-4E380E4AE0BA} - WinExe - Properties - SiMay.ServiceCore - SiMayServiceCore - v4.0 - 512 - - false - - - 发布\ - true - Disk - false - Foreground - 7 - Days - false - false - true - 0 - 1.0.0.%2a - false - true - - - AnyCPU - true - full - false - ..\Bin\plugins\ - DEBUG;TRACE - prompt - 4 - false - true - 8.0 - - - AnyCPU - pdbonly - true - ..\Bin\plugins\ - DEBUG;TRACE - prompt - 4 - false - true - 8.0 - - - true - bin\x64\Debug\ - DEBUG;TRACE - full - x64 - prompt - MinimumRecommendedRules.ruleset - false - 8.0 - - - bin\x64\Release\ - DEBUG;TRACE - true - pdbonly - x64 - prompt - MinimumRecommendedRules.ruleset - false - 8.0 - - - LocalIntranet - - - false - - - - - - - - ..\AForge.dll\AForge.Video.dll - - - ..\AForge.dll\AForge.Video.DirectShow.dll - - - ..\packages\Costura.Fody.1.6.1\lib\portable-net+sl+win+wpa+wp\Costura.dll - False - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Component - - - Service.cs - - - - - - - - - - - - - ResXFileCodeGenerator - Resources.Designer.cs - Designer - - - True - Resources.resx - True - - - - - SettingsSingleFileGenerator - Settings.Designer.cs - - - True - Settings.settings - True - - - - - - - - False - .NET Framework 3.5 SP1 Client Profile - false - - - False - .NET Framework 3.5 SP1 - true - - - - - - - - {B30CD716-698A-4DA2-BD1A-C152B16993C0} - SiMay.Basic - - - {1aadc6f7-6ff9-4c68-8a26-e507f22b9060} - SiMay.Core - - - {7efe8058-f772-40eb-8e12-6e88e2a9e19a} - SiMay.RemoteService - - - {4888d6bb-46d9-4519-8758-e13e397aa226} - SiMay.Serialize - - - {d181fcce-ecc7-4710-89cc-d97f94a6181b} - SiMay.Sockets.V4 - - - - - - - - - - 这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。 - - - - - + + + + + Debug + AnyCPU + {8D061D46-9E59-42B0-91DC-4E380E4AE0BA} + WinExe + Properties + SiMay.ServiceCore + SiMayServiceCore + v4.0 + 512 + + false + + + 发布\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 1.0.0.%2a + false + true + + + AnyCPU + true + full + false + ..\Bin\plugins\ + DEBUG;TRACE + prompt + 4 + false + true + 8.0 + + + AnyCPU + pdbonly + true + ..\Bin\plugins\ + DEBUG;TRACE + prompt + 4 + false + true + 8.0 + + + true + bin\x64\Debug\ + DEBUG;TRACE + full + x64 + prompt + MinimumRecommendedRules.ruleset + false + 8.0 + + + bin\x64\Release\ + DEBUG;TRACE + true + pdbonly + x64 + prompt + MinimumRecommendedRules.ruleset + false + 8.0 + + + LocalIntranet + + + false + + + + + + + + ..\AForge.dll\AForge.Video.dll + + + ..\AForge.dll\AForge.Video.DirectShow.dll + + + ..\packages\Costura.Fody.1.6.1\lib\portable-net+sl+win+wpa+wp\Costura.dll + False + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Component + + + Service.cs + + + + + + + + + + + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + True + + + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + + + + False + .NET Framework 3.5 SP1 Client Profile + false + + + False + .NET Framework 3.5 SP1 + true + + + + + + + + {B30CD716-698A-4DA2-BD1A-C152B16993C0} + SiMay.Basic + + + {1aadc6f7-6ff9-4c68-8a26-e507f22b9060} + SiMay.Core + + + {7efe8058-f772-40eb-8e12-6e88e2a9e19a} + SiMay.RemoteService + + + {4888d6bb-46d9-4519-8758-e13e397aa226} + SiMay.Serialize + + + {d181fcce-ecc7-4710-89cc-d97f94a6181b} + SiMay.Sockets.V4 + + + + + + + + + + 这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。 + + + + + + --> \ No newline at end of file diff --git a/SiMay.RemoteClient.NewCore/Win32/User32.cs b/SiMay.RemoteClient.NewCore/Win32/User32.cs index 4eb4e4b5aa7f199b4883d62afa11ca2211520764..2b83a656806a558cc829fff3947d831e574eaaf8 100644 --- a/SiMay.RemoteClient.NewCore/Win32/User32.cs +++ b/SiMay.RemoteClient.NewCore/Win32/User32.cs @@ -22,11 +22,13 @@ namespace SiMay.ServiceCore.Win32 public const int SPIF_SENDWININICHANGE = 0x02; public const int SPI_SETDESKWALLPAPER = 20; - public const int SPIF_UPDATEINIFILE = 1; - public const int SPIF_SENDCHANGE = 2; + public const int SPIF_UPDATEINIFILE = 0x01; + public const int SPIF_SENDCHANGE = 0x02; public static readonly int SPI_GETDESKWALLPAPER = 0x73; - public static readonly int MAX_PATH = 260; + public static readonly int MAX_PATH = 260; + + #endregion #region Enums @@ -1238,6 +1240,7 @@ namespace SiMay.ServiceCore.Win32 public static extern int SystemParametersInfo( int uAction, int uParam, string lpvParam, int fuWinIni); + [DllImport("user32.dll", SetLastError = true)] public static extern bool LockWorkStation(); @@ -1245,7 +1248,9 @@ namespace SiMay.ServiceCore.Win32 public static extern short VkKeyScan(char ch); [DllImport("user32.dll")] - public static extern int SendMessage(int hWnd, int hMsg, int wParam, int lParam); + public static extern int SendMessage(int hWnd, int hMsg, int wParam, int lParam); + + #endregion } diff --git a/SiMay.RemoteControlsCore/HandlerAdapters/RemoteFileAdapterHandler.cs b/SiMay.RemoteControlsCore/HandlerAdapters/RemoteFileAdapterHandler.cs index 901b22cff0dd45e8305457bd35ece5a6d028fc06..f672cded1769e2f8c9235ad55c71f088a9cacb11 100644 --- a/SiMay.RemoteControlsCore/HandlerAdapters/RemoteFileAdapterHandler.cs +++ b/SiMay.RemoteControlsCore/HandlerAdapters/RemoteFileAdapterHandler.cs @@ -1,8 +1,6 @@ using System; using System.Collections.Generic; -using System.IO; using System.Linq; -using System.Text; using System.Threading; using System.Threading.Tasks; using SiMay.Basic; @@ -309,6 +307,7 @@ namespace SiMay.RemoteControlsCore.HandlerAdapters } + /// /// 下载文件 /// diff --git a/SiMay.RemoteControlsCore/HandlerAdapters/RemoteScreenAdapterHandler.cs b/SiMay.RemoteControlsCore/HandlerAdapters/RemoteScreenAdapterHandler.cs index 78d7f8a059339e69864625f3c3e9bbbf4ad0fe05..bd7e97bd8b05250cd1272f29f5d4e86131c3f2a7 100644 --- a/SiMay.RemoteControlsCore/HandlerAdapters/RemoteScreenAdapterHandler.cs +++ b/SiMay.RemoteControlsCore/HandlerAdapters/RemoteScreenAdapterHandler.cs @@ -174,6 +174,11 @@ namespace SiMay.RemoteControlsCore.HandlerAdapters SendAsyncMessage(MessageHead.S_SCREEN_CTRL_ALT_DEL); } + public void RemoteDeleteWallPaper() + { + SendAsyncMessage(MessageHead.S_SCREEN_DELETE_WALLPAPER); + } + public void GetRemoteClipoardText() { SendAsyncMessage(MessageHead.S_SCREEN_GET_CLIPOARD_TEXT); diff --git a/SiMay.RemoteMonitor/Application/FileApplication.Designer.cs b/SiMay.RemoteMonitor/Application/FileApplication.Designer.cs index a23c3604785dd2abbb0cf8f8f50574f330c384cf..59c0b23279342e6f977fb8829f5789d58e13e7ff 100644 --- a/SiMay.RemoteMonitor/Application/FileApplication.Designer.cs +++ b/SiMay.RemoteMonitor/Application/FileApplication.Designer.cs @@ -28,471 +28,472 @@ /// private void InitializeComponent() { - this.components = new System.ComponentModel.Container(); - this.cmdContext = new System.Windows.Forms.ContextMenuStrip(this.components); - this.打开ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripMenuItem5 = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem(); - this.详细信息ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.列表ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.平铺ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.刷新目录ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); - this.downloadMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.downloadAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.uploadMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.文件ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.文件夹ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator(); - this.复制文件ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); - this.删除文件ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.重命名ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.新建文件夹ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); - this.刷新ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.取消选择ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); - this.parentBut = new System.Windows.Forms.Button(); - this.txtRemotedirectory = new System.Windows.Forms.TextBox(); - this.refreshBut = new System.Windows.Forms.Button(); - this.label1 = new System.Windows.Forms.Label(); - this.statusStrip1 = new System.Windows.Forms.StatusStrip(); - this.transferCaption = new System.Windows.Forms.ToolStripStatusLabel(); - this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel(); - this.time = new System.Windows.Forms.ToolStripStatusLabel(); - this.transferDatalenght = new System.Windows.Forms.ToolStripStatusLabel(); - this.transferProgress = new System.Windows.Forms.ToolStripProgressBar(); - this.toolStripDropDownButton1 = new System.Windows.Forms.ToolStripDropDownButton(); - this.label2 = new System.Windows.Forms.Label(); - this.txtSavePath = new System.Windows.Forms.LinkLabel(); - this.linkLabel1 = new System.Windows.Forms.LinkLabel(); - this.treeContext = new System.Windows.Forms.ContextMenuStrip(this.components); - this.打开目录ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.fileList = new SiMay.RemoteMonitor.UserControls.UListView(); - this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); - this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); - this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); - this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); - this.cmdContext.SuspendLayout(); - this.tableLayoutPanel1.SuspendLayout(); - this.statusStrip1.SuspendLayout(); - this.treeContext.SuspendLayout(); - this.SuspendLayout(); - // - // cmdContext - // - this.cmdContext.ImageScalingSize = new System.Drawing.Size(20, 20); - this.cmdContext.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.打开ToolStripMenuItem, - this.toolStripMenuItem5, - this.toolStripMenuItem4, - this.刷新目录ToolStripMenuItem, - this.toolStripSeparator2, - this.downloadMenuItem, - this.uploadMenuItem, - this.toolStripSeparator3, - this.复制文件ToolStripMenuItem, - this.toolStripMenuItem1, - this.删除文件ToolStripMenuItem, - this.重命名ToolStripMenuItem, - this.新建文件夹ToolStripMenuItem, - this.toolStripSeparator1, - this.刷新ToolStripMenuItem, - this.取消选择ToolStripMenuItem}); - this.cmdContext.Name = "cmdContext"; - this.cmdContext.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional; - this.cmdContext.Size = new System.Drawing.Size(137, 308); - // - // 打开ToolStripMenuItem - // - this.打开ToolStripMenuItem.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.打开ToolStripMenuItem.Name = "打开ToolStripMenuItem"; - this.打开ToolStripMenuItem.Size = new System.Drawing.Size(136, 22); - this.打开ToolStripMenuItem.Text = "打开"; - this.打开ToolStripMenuItem.Click += new System.EventHandler(this.打开ToolStripMenuItem_Click); - // - // toolStripMenuItem5 - // - this.toolStripMenuItem5.Name = "toolStripMenuItem5"; - this.toolStripMenuItem5.Size = new System.Drawing.Size(136, 22); - this.toolStripMenuItem5.Text = "远程运行"; - this.toolStripMenuItem5.Click += new System.EventHandler(this.ToolStripMenuItem5_Click); - // - // toolStripMenuItem4 - // - this.toolStripMenuItem4.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.详细信息ToolStripMenuItem, - this.列表ToolStripMenuItem, - this.平铺ToolStripMenuItem}); - this.toolStripMenuItem4.Name = "toolStripMenuItem4"; - this.toolStripMenuItem4.Size = new System.Drawing.Size(136, 22); - this.toolStripMenuItem4.Text = "查看"; - // - // 详细信息ToolStripMenuItem - // - this.详细信息ToolStripMenuItem.Checked = true; - this.详细信息ToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; - this.详细信息ToolStripMenuItem.Name = "详细信息ToolStripMenuItem"; - this.详细信息ToolStripMenuItem.Size = new System.Drawing.Size(124, 22); - this.详细信息ToolStripMenuItem.Text = "详细信息"; - this.详细信息ToolStripMenuItem.Click += new System.EventHandler(this.详细信息ToolStripMenuItem_Click); - // - // 列表ToolStripMenuItem - // - this.列表ToolStripMenuItem.Name = "列表ToolStripMenuItem"; - this.列表ToolStripMenuItem.Size = new System.Drawing.Size(124, 22); - this.列表ToolStripMenuItem.Text = "列表"; - this.列表ToolStripMenuItem.Click += new System.EventHandler(this.列表ToolStripMenuItem_Click); - // - // 平铺ToolStripMenuItem - // - this.平铺ToolStripMenuItem.Name = "平铺ToolStripMenuItem"; - this.平铺ToolStripMenuItem.Size = new System.Drawing.Size(124, 22); - this.平铺ToolStripMenuItem.Text = "平铺"; - this.平铺ToolStripMenuItem.Click += new System.EventHandler(this.平铺ToolStripMenuItem_Click); - // - // 刷新目录ToolStripMenuItem - // - this.刷新目录ToolStripMenuItem.Name = "刷新目录ToolStripMenuItem"; - this.刷新目录ToolStripMenuItem.Size = new System.Drawing.Size(136, 22); - this.刷新目录ToolStripMenuItem.Text = "刷新目录"; - this.刷新目录ToolStripMenuItem.Click += new System.EventHandler(this.刷新目录ToolStripMenuItem_Click); - // - // toolStripSeparator2 - // - this.toolStripSeparator2.Name = "toolStripSeparator2"; - this.toolStripSeparator2.Size = new System.Drawing.Size(133, 6); - // - // downloadMenuItem - // - this.downloadMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.downloadAsToolStripMenuItem}); - this.downloadMenuItem.Name = "downloadMenuItem"; - this.downloadMenuItem.Size = new System.Drawing.Size(136, 22); - this.downloadMenuItem.Text = "下载"; - this.downloadMenuItem.Click += new System.EventHandler(this.downloadMenuItem_Click); - // - // downloadAsToolStripMenuItem - // - this.downloadAsToolStripMenuItem.Name = "downloadAsToolStripMenuItem"; - this.downloadAsToolStripMenuItem.Size = new System.Drawing.Size(136, 22); - this.downloadAsToolStripMenuItem.Text = "下载另存为"; - this.downloadAsToolStripMenuItem.Click += new System.EventHandler(this.下载到ToolStripMenuItem_Click); - // - // uploadMenuItem - // - this.uploadMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.文件ToolStripMenuItem, - this.文件夹ToolStripMenuItem}); - this.uploadMenuItem.Name = "uploadMenuItem"; - this.uploadMenuItem.Size = new System.Drawing.Size(136, 22); - this.uploadMenuItem.Text = "上传"; - // - // 文件ToolStripMenuItem - // - this.文件ToolStripMenuItem.Name = "文件ToolStripMenuItem"; - this.文件ToolStripMenuItem.Size = new System.Drawing.Size(112, 22); - this.文件ToolStripMenuItem.Text = "文件"; - this.文件ToolStripMenuItem.Click += new System.EventHandler(this.文件ToolStripMenuItem_Click); - // - // 文件夹ToolStripMenuItem - // - this.文件夹ToolStripMenuItem.Name = "文件夹ToolStripMenuItem"; - this.文件夹ToolStripMenuItem.Size = new System.Drawing.Size(112, 22); - this.文件夹ToolStripMenuItem.Text = "文件夹"; - this.文件夹ToolStripMenuItem.Click += new System.EventHandler(this.文件夹ToolStripMenuItem_Click); - // - // toolStripSeparator3 - // - this.toolStripSeparator3.Name = "toolStripSeparator3"; - this.toolStripSeparator3.Size = new System.Drawing.Size(133, 6); - // - // 复制文件ToolStripMenuItem - // - this.复制文件ToolStripMenuItem.Name = "复制文件ToolStripMenuItem"; - this.复制文件ToolStripMenuItem.Size = new System.Drawing.Size(136, 22); - this.复制文件ToolStripMenuItem.Text = "复制"; - this.复制文件ToolStripMenuItem.Click += new System.EventHandler(this.复制文件ToolStripMenuItem_Click); - // - // toolStripMenuItem1 - // - this.toolStripMenuItem1.Name = "toolStripMenuItem1"; - this.toolStripMenuItem1.Size = new System.Drawing.Size(136, 22); - this.toolStripMenuItem1.Text = "粘贴"; - this.toolStripMenuItem1.Click += new System.EventHandler(this.toolStripMenuItem1_Click); - // - // 删除文件ToolStripMenuItem - // - this.删除文件ToolStripMenuItem.Name = "删除文件ToolStripMenuItem"; - this.删除文件ToolStripMenuItem.Size = new System.Drawing.Size(136, 22); - this.删除文件ToolStripMenuItem.Text = "删除"; - this.删除文件ToolStripMenuItem.Click += new System.EventHandler(this.删除文件ToolStripMenuItem_Click); - // - // 重命名ToolStripMenuItem - // - this.重命名ToolStripMenuItem.Name = "重命名ToolStripMenuItem"; - this.重命名ToolStripMenuItem.Size = new System.Drawing.Size(136, 22); - this.重命名ToolStripMenuItem.Text = "重命名"; - this.重命名ToolStripMenuItem.Click += new System.EventHandler(this.重命名ToolStripMenuItem_Click); - // - // 新建文件夹ToolStripMenuItem - // - this.新建文件夹ToolStripMenuItem.Name = "新建文件夹ToolStripMenuItem"; - this.新建文件夹ToolStripMenuItem.Size = new System.Drawing.Size(136, 22); - this.新建文件夹ToolStripMenuItem.Text = "新建文件夹"; - this.新建文件夹ToolStripMenuItem.Click += new System.EventHandler(this.新建文件夹ToolStripMenuItem_Click); - // - // toolStripSeparator1 - // - this.toolStripSeparator1.Name = "toolStripSeparator1"; - this.toolStripSeparator1.Size = new System.Drawing.Size(133, 6); - // - // 刷新ToolStripMenuItem - // - this.刷新ToolStripMenuItem.Name = "刷新ToolStripMenuItem"; - this.刷新ToolStripMenuItem.Size = new System.Drawing.Size(136, 22); - this.刷新ToolStripMenuItem.Text = "全部选择"; - this.刷新ToolStripMenuItem.Click += new System.EventHandler(this.选择全部ToolStripMenuItem_Click); - // - // 取消选择ToolStripMenuItem - // - this.取消选择ToolStripMenuItem.Name = "取消选择ToolStripMenuItem"; - this.取消选择ToolStripMenuItem.Size = new System.Drawing.Size(136, 22); - this.取消选择ToolStripMenuItem.Text = "取消选择"; - this.取消选择ToolStripMenuItem.Click += new System.EventHandler(this.取消选择ToolStripMenuItem_Click); - // - // tableLayoutPanel1 - // - this.tableLayoutPanel1.ColumnCount = 4; - this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 73F)); - this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F)); - this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F)); - this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F)); - this.tableLayoutPanel1.Controls.Add(this.parentBut, 3, 0); - this.tableLayoutPanel1.Controls.Add(this.txtRemotedirectory, 1, 0); - this.tableLayoutPanel1.Controls.Add(this.refreshBut, 2, 0); - this.tableLayoutPanel1.Controls.Add(this.label1, 0, 0); - this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top; - this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0); - this.tableLayoutPanel1.Name = "tableLayoutPanel1"; - this.tableLayoutPanel1.RowCount = 1; - this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F)); - this.tableLayoutPanel1.Size = new System.Drawing.Size(861, 30); - this.tableLayoutPanel1.TabIndex = 6; - // - // parentBut - // - this.parentBut.Location = new System.Drawing.Point(764, 3); - this.parentBut.Name = "parentBut"; - this.parentBut.Size = new System.Drawing.Size(85, 24); - this.parentBut.TabIndex = 0; - this.parentBut.Text = "上级目录"; - this.parentBut.UseVisualStyleBackColor = true; - this.parentBut.Click += new System.EventHandler(this.button1_Click); - // - // txtRemotedirectory - // - this.txtRemotedirectory.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); - this.txtRemotedirectory.Location = new System.Drawing.Point(76, 4); - this.txtRemotedirectory.Name = "txtRemotedirectory"; - this.txtRemotedirectory.Size = new System.Drawing.Size(582, 21); - this.txtRemotedirectory.TabIndex = 2; - this.txtRemotedirectory.MouseClick += new System.Windows.Forms.MouseEventHandler(this.TxtRemotedirectory_MouseClick); - this.txtRemotedirectory.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtRemotedirectory_KeyPress); - // - // refreshBut - // - this.refreshBut.Location = new System.Drawing.Point(664, 3); - this.refreshBut.Name = "refreshBut"; - this.refreshBut.Size = new System.Drawing.Size(94, 24); - this.refreshBut.TabIndex = 1; - this.refreshBut.Text = "刷新目录"; - this.refreshBut.UseVisualStyleBackColor = true; - this.refreshBut.Click += new System.EventHandler(this.button2_Click); - // - // label1 - // - this.label1.Anchor = System.Windows.Forms.AnchorStyles.Right; - this.label1.AutoSize = true; - this.label1.Location = new System.Drawing.Point(11, 9); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(59, 12); - this.label1.TabIndex = 3; - this.label1.Text = "远程目录:"; - // - // statusStrip1 - // - this.statusStrip1.ImageScalingSize = new System.Drawing.Size(20, 20); - this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.transferCaption, - this.toolStripStatusLabel3, - this.time, - this.transferDatalenght, - this.transferProgress, - this.toolStripDropDownButton1}); - this.statusStrip1.Location = new System.Drawing.Point(0, 493); - this.statusStrip1.Name = "statusStrip1"; - this.statusStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode; - this.statusStrip1.Size = new System.Drawing.Size(861, 23); - this.statusStrip1.TabIndex = 5; - this.statusStrip1.Text = "statusStrip1"; - // - // transferCaption - // - this.transferCaption.Name = "transferCaption"; - this.transferCaption.Size = new System.Drawing.Size(0, 18); - // - // toolStripStatusLabel3 - // - this.toolStripStatusLabel3.Name = "toolStripStatusLabel3"; - this.toolStripStatusLabel3.Size = new System.Drawing.Size(621, 18); - this.toolStripStatusLabel3.Spring = true; - // - // time - // - this.time.Name = "time"; - this.time.Size = new System.Drawing.Size(0, 18); - // - // transferDatalenght - // - this.transferDatalenght.Name = "transferDatalenght"; - this.transferDatalenght.Size = new System.Drawing.Size(67, 18); - this.transferDatalenght.Text = "已接收0KB"; - // - // transferProgress - // - this.transferProgress.Name = "transferProgress"; - this.transferProgress.Size = new System.Drawing.Size(120, 17); - // - // toolStripDropDownButton1 - // - this.toolStripDropDownButton1.BackColor = System.Drawing.SystemColors.Control; - this.toolStripDropDownButton1.Name = "toolStripDropDownButton1"; - this.toolStripDropDownButton1.ShowDropDownArrow = false; - this.toolStripDropDownButton1.Size = new System.Drawing.Size(36, 21); - this.toolStripDropDownButton1.Text = "停止"; - this.toolStripDropDownButton1.Click += new System.EventHandler(this.toolStripDropDownButton1_Click); - // - // label2 - // - this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.label2.AutoSize = true; - this.label2.Location = new System.Drawing.Point(10, 476); - this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(59, 12); - this.label2.TabIndex = 7; - this.label2.Text = "下载目录:"; - // - // txtSavePath - // - this.txtSavePath.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.txtSavePath.AutoSize = true; - this.txtSavePath.Location = new System.Drawing.Point(74, 476); - this.txtSavePath.Name = "txtSavePath"; - this.txtSavePath.Size = new System.Drawing.Size(23, 12); - this.txtSavePath.TabIndex = 8; - this.txtSavePath.TabStop = true; - this.txtSavePath.Text = "C:\\"; - this.txtSavePath.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.savePath_LinkClicked); - // - // linkLabel1 - // - this.linkLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.linkLabel1.AutoSize = true; - this.linkLabel1.Location = new System.Drawing.Point(796, 476); - this.linkLabel1.Name = "linkLabel1"; - this.linkLabel1.Size = new System.Drawing.Size(53, 12); - this.linkLabel1.TabIndex = 9; - this.linkLabel1.TabStop = true; - this.linkLabel1.Text = "设置目录"; - this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked); - // - // treeContext - // - this.treeContext.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.打开目录ToolStripMenuItem}); - this.treeContext.Name = "treeContext"; - this.treeContext.Size = new System.Drawing.Size(125, 26); - // - // 打开目录ToolStripMenuItem - // - this.打开目录ToolStripMenuItem.Name = "打开目录ToolStripMenuItem"; - this.打开目录ToolStripMenuItem.Size = new System.Drawing.Size(124, 22); - this.打开目录ToolStripMenuItem.Text = "打开目录"; - this.打开目录ToolStripMenuItem.Click += new System.EventHandler(this.打开目录ToolStripMenuItem_Click); - // - // fileList - // - this.fileList.AllowDrop = true; - this.fileList.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.fileList.CheckBoxes = true; - this.fileList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { - this.columnHeader1, - this.columnHeader2, - this.columnHeader3, - this.columnHeader4}); - this.fileList.ContextMenuStrip = this.cmdContext; - this.fileList.FullRowSelect = true; - this.fileList.HideSelection = false; - this.fileList.Location = new System.Drawing.Point(12, 30); - this.fileList.Name = "fileList"; - this.fileList.Size = new System.Drawing.Size(837, 442); - this.fileList.TabIndex = 4; - this.fileList.UseCompatibleStateImageBehavior = false; - this.fileList.UseWindowsThemStyle = true; - this.fileList.View = System.Windows.Forms.View.Details; - this.fileList.DragDrop += new System.Windows.Forms.DragEventHandler(this.fileList_DragDrop); - this.fileList.DragEnter += new System.Windows.Forms.DragEventHandler(this.fileList_DragEnter); - this.fileList.DoubleClick += new System.EventHandler(this.m_files_DoubleClick); - // - // columnHeader1 - // - this.columnHeader1.Text = "名称"; - this.columnHeader1.Width = 250; - // - // columnHeader2 - // - this.columnHeader2.Text = "大小"; - this.columnHeader2.Width = 120; - // - // columnHeader3 - // - this.columnHeader3.Text = "类型"; - this.columnHeader3.Width = 100; - // - // columnHeader4 - // - this.columnHeader4.Text = "修改日期"; - this.columnHeader4.Width = 130; - // - // FileApplication - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(861, 516); - this.Controls.Add(this.linkLabel1); - this.Controls.Add(this.txtSavePath); - this.Controls.Add(this.label2); - this.Controls.Add(this.fileList); - this.Controls.Add(this.tableLayoutPanel1); - this.Controls.Add(this.statusStrip1); - this.Name = "FileApplication"; - this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; - this.Text = "远程文件管理"; - this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FileManager_FormClosing); - this.Load += new System.EventHandler(this.FileManager_Load); - this.cmdContext.ResumeLayout(false); - this.tableLayoutPanel1.ResumeLayout(false); - this.tableLayoutPanel1.PerformLayout(); - this.statusStrip1.ResumeLayout(false); - this.statusStrip1.PerformLayout(); - this.treeContext.ResumeLayout(false); - this.ResumeLayout(false); - this.PerformLayout(); - + this.components = new System.ComponentModel.Container(); + this.cmdContext = new System.Windows.Forms.ContextMenuStrip(this.components); + this.打开ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItem5 = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem(); + this.详细信息ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.列表ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.平铺ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.刷新目录ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); + this.downloadMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.downloadAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.uploadMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.文件ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.文件夹ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator(); + this.复制文件ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); + this.删除文件ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.重命名ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.新建文件夹ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); + this.刷新ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.取消选择ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); + this.parentBut = new System.Windows.Forms.Button(); + this.txtRemotedirectory = new System.Windows.Forms.TextBox(); + this.refreshBut = new System.Windows.Forms.Button(); + this.label1 = new System.Windows.Forms.Label(); + this.statusStrip1 = new System.Windows.Forms.StatusStrip(); + this.transferCaption = new System.Windows.Forms.ToolStripStatusLabel(); + this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel(); + this.time = new System.Windows.Forms.ToolStripStatusLabel(); + this.transferDatalenght = new System.Windows.Forms.ToolStripStatusLabel(); + this.transferProgress = new System.Windows.Forms.ToolStripProgressBar(); + this.toolStripDropDownButton1 = new System.Windows.Forms.ToolStripDropDownButton(); + this.label2 = new System.Windows.Forms.Label(); + this.txtSavePath = new System.Windows.Forms.LinkLabel(); + this.linkLabel1 = new System.Windows.Forms.LinkLabel(); + this.treeContext = new System.Windows.Forms.ContextMenuStrip(this.components); + this.打开目录ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.fileList = new SiMay.RemoteMonitor.UserControls.UListView(); + this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); + this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); + this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); + this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); + this.cmdContext.SuspendLayout(); + this.tableLayoutPanel1.SuspendLayout(); + this.statusStrip1.SuspendLayout(); + this.treeContext.SuspendLayout(); + this.SuspendLayout(); + // + // cmdContext + // + this.cmdContext.ImageScalingSize = new System.Drawing.Size(20, 20); + this.cmdContext.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.打开ToolStripMenuItem, + this.toolStripMenuItem5, + this.toolStripMenuItem4, + this.刷新目录ToolStripMenuItem, + this.toolStripSeparator2, + this.downloadMenuItem, + this.uploadMenuItem, + this.toolStripSeparator3, + this.复制文件ToolStripMenuItem, + this.toolStripMenuItem1, + this.删除文件ToolStripMenuItem, + this.重命名ToolStripMenuItem, + this.新建文件夹ToolStripMenuItem, + this.toolStripSeparator1, + this.刷新ToolStripMenuItem, + this.取消选择ToolStripMenuItem}); + this.cmdContext.Name = "cmdContext"; + this.cmdContext.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional; + this.cmdContext.Size = new System.Drawing.Size(181, 330); + // + // 打开ToolStripMenuItem + // + this.打开ToolStripMenuItem.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.打开ToolStripMenuItem.Name = "打开ToolStripMenuItem"; + this.打开ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); + this.打开ToolStripMenuItem.Text = "打开"; + this.打开ToolStripMenuItem.Click += new System.EventHandler(this.打开ToolStripMenuItem_Click); + // + // toolStripMenuItem5 + // + this.toolStripMenuItem5.Name = "toolStripMenuItem5"; + this.toolStripMenuItem5.Size = new System.Drawing.Size(180, 22); + this.toolStripMenuItem5.Text = "远程运行"; + this.toolStripMenuItem5.Click += new System.EventHandler(this.toolStripMenuItem5_Click); + // + // toolStripMenuItem4 + // + this.toolStripMenuItem4.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.详细信息ToolStripMenuItem, + this.列表ToolStripMenuItem, + this.平铺ToolStripMenuItem}); + this.toolStripMenuItem4.Name = "toolStripMenuItem4"; + this.toolStripMenuItem4.Size = new System.Drawing.Size(180, 22); + this.toolStripMenuItem4.Text = "查看"; + // + // 详细信息ToolStripMenuItem + // + this.详细信息ToolStripMenuItem.Checked = true; + this.详细信息ToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; + this.详细信息ToolStripMenuItem.Name = "详细信息ToolStripMenuItem"; + this.详细信息ToolStripMenuItem.Size = new System.Drawing.Size(124, 22); + this.详细信息ToolStripMenuItem.Text = "详细信息"; + this.详细信息ToolStripMenuItem.Click += new System.EventHandler(this.详细信息ToolStripMenuItem_Click); + // + // 列表ToolStripMenuItem + // + this.列表ToolStripMenuItem.Name = "列表ToolStripMenuItem"; + this.列表ToolStripMenuItem.Size = new System.Drawing.Size(124, 22); + this.列表ToolStripMenuItem.Text = "列表"; + this.列表ToolStripMenuItem.Click += new System.EventHandler(this.列表ToolStripMenuItem_Click); + // + // 平铺ToolStripMenuItem + // + this.平铺ToolStripMenuItem.Name = "平铺ToolStripMenuItem"; + this.平铺ToolStripMenuItem.Size = new System.Drawing.Size(124, 22); + this.平铺ToolStripMenuItem.Text = "平铺"; + this.平铺ToolStripMenuItem.Click += new System.EventHandler(this.平铺ToolStripMenuItem_Click); + // + // 刷新目录ToolStripMenuItem + // + this.刷新目录ToolStripMenuItem.Name = "刷新目录ToolStripMenuItem"; + this.刷新目录ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); + this.刷新目录ToolStripMenuItem.Text = "刷新目录"; + this.刷新目录ToolStripMenuItem.Click += new System.EventHandler(this.刷新目录ToolStripMenuItem_Click); + // + // toolStripSeparator2 + // + this.toolStripSeparator2.Name = "toolStripSeparator2"; + this.toolStripSeparator2.Size = new System.Drawing.Size(177, 6); + // + // downloadMenuItem + // + this.downloadMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.downloadAsToolStripMenuItem}); + this.downloadMenuItem.Name = "downloadMenuItem"; + this.downloadMenuItem.Size = new System.Drawing.Size(180, 22); + this.downloadMenuItem.Text = "下载"; + this.downloadMenuItem.Click += new System.EventHandler(this.downloadMenuItem_Click); + // + // downloadAsToolStripMenuItem + // + this.downloadAsToolStripMenuItem.Name = "downloadAsToolStripMenuItem"; + this.downloadAsToolStripMenuItem.Size = new System.Drawing.Size(136, 22); + this.downloadAsToolStripMenuItem.Text = "下载另存为"; + this.downloadAsToolStripMenuItem.Click += new System.EventHandler(this.下载到ToolStripMenuItem_Click); + // + // uploadMenuItem + // + this.uploadMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.文件ToolStripMenuItem, + this.文件夹ToolStripMenuItem}); + this.uploadMenuItem.Name = "uploadMenuItem"; + this.uploadMenuItem.Size = new System.Drawing.Size(180, 22); + this.uploadMenuItem.Text = "上传"; + // + // 文件ToolStripMenuItem + // + this.文件ToolStripMenuItem.Name = "文件ToolStripMenuItem"; + this.文件ToolStripMenuItem.Size = new System.Drawing.Size(112, 22); + this.文件ToolStripMenuItem.Text = "文件"; + this.文件ToolStripMenuItem.Click += new System.EventHandler(this.文件ToolStripMenuItem_Click); + // + // 文件夹ToolStripMenuItem + // + this.文件夹ToolStripMenuItem.Name = "文件夹ToolStripMenuItem"; + this.文件夹ToolStripMenuItem.Size = new System.Drawing.Size(112, 22); + this.文件夹ToolStripMenuItem.Text = "文件夹"; + this.文件夹ToolStripMenuItem.Click += new System.EventHandler(this.文件夹ToolStripMenuItem_Click); + // + // toolStripSeparator3 + // + this.toolStripSeparator3.Name = "toolStripSeparator3"; + this.toolStripSeparator3.Size = new System.Drawing.Size(177, 6); + // + // 复制文件ToolStripMenuItem + // + this.复制文件ToolStripMenuItem.Name = "复制文件ToolStripMenuItem"; + this.复制文件ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); + this.复制文件ToolStripMenuItem.Text = "复制"; + this.复制文件ToolStripMenuItem.Click += new System.EventHandler(this.复制文件ToolStripMenuItem_Click); + // + // toolStripMenuItem1 + // + this.toolStripMenuItem1.Name = "toolStripMenuItem1"; + this.toolStripMenuItem1.Size = new System.Drawing.Size(180, 22); + this.toolStripMenuItem1.Text = "粘贴"; + this.toolStripMenuItem1.Click += new System.EventHandler(this.toolStripMenuItem1_Click); + // + // 删除文件ToolStripMenuItem + // + this.删除文件ToolStripMenuItem.Name = "删除文件ToolStripMenuItem"; + this.删除文件ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); + this.删除文件ToolStripMenuItem.Text = "删除"; + this.删除文件ToolStripMenuItem.Click += new System.EventHandler(this.删除文件ToolStripMenuItem_Click); + // + // 重命名ToolStripMenuItem + // + this.重命名ToolStripMenuItem.Name = "重命名ToolStripMenuItem"; + this.重命名ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); + this.重命名ToolStripMenuItem.Text = "重命名"; + this.重命名ToolStripMenuItem.Click += new System.EventHandler(this.重命名ToolStripMenuItem_Click); + // + // 新建文件夹ToolStripMenuItem + // + this.新建文件夹ToolStripMenuItem.Name = "新建文件夹ToolStripMenuItem"; + this.新建文件夹ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); + this.新建文件夹ToolStripMenuItem.Text = "新建文件夹"; + this.新建文件夹ToolStripMenuItem.Click += new System.EventHandler(this.新建文件夹ToolStripMenuItem_Click); + // + // toolStripSeparator1 + // + this.toolStripSeparator1.Name = "toolStripSeparator1"; + this.toolStripSeparator1.Size = new System.Drawing.Size(177, 6); + // + // 刷新ToolStripMenuItem + // + this.刷新ToolStripMenuItem.Name = "刷新ToolStripMenuItem"; + this.刷新ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); + this.刷新ToolStripMenuItem.Text = "全部选择"; + this.刷新ToolStripMenuItem.Click += new System.EventHandler(this.选择全部ToolStripMenuItem_Click); + // + // 取消选择ToolStripMenuItem + // + this.取消选择ToolStripMenuItem.Name = "取消选择ToolStripMenuItem"; + this.取消选择ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); + this.取消选择ToolStripMenuItem.Text = "取消选择"; + this.取消选择ToolStripMenuItem.Click += new System.EventHandler(this.取消选择ToolStripMenuItem_Click); + // + // tableLayoutPanel1 + // + this.tableLayoutPanel1.ColumnCount = 4; + this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 73F)); + this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F)); + this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F)); + this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F)); + this.tableLayoutPanel1.Controls.Add(this.parentBut, 3, 0); + this.tableLayoutPanel1.Controls.Add(this.txtRemotedirectory, 1, 0); + this.tableLayoutPanel1.Controls.Add(this.refreshBut, 2, 0); + this.tableLayoutPanel1.Controls.Add(this.label1, 0, 0); + this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top; + this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0); + this.tableLayoutPanel1.Name = "tableLayoutPanel1"; + this.tableLayoutPanel1.RowCount = 1; + this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F)); + this.tableLayoutPanel1.Size = new System.Drawing.Size(861, 30); + this.tableLayoutPanel1.TabIndex = 6; + // + // parentBut + // + this.parentBut.Location = new System.Drawing.Point(764, 3); + this.parentBut.Name = "parentBut"; + this.parentBut.Size = new System.Drawing.Size(85, 24); + this.parentBut.TabIndex = 0; + this.parentBut.Text = "上级目录"; + this.parentBut.UseVisualStyleBackColor = true; + this.parentBut.Click += new System.EventHandler(this.button1_Click); + // + // txtRemotedirectory + // + this.txtRemotedirectory.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); + this.txtRemotedirectory.Location = new System.Drawing.Point(76, 4); + this.txtRemotedirectory.Name = "txtRemotedirectory"; + this.txtRemotedirectory.Size = new System.Drawing.Size(582, 21); + this.txtRemotedirectory.TabIndex = 2; + this.txtRemotedirectory.MouseClick += new System.Windows.Forms.MouseEventHandler(this.TxtRemotedirectory_MouseClick); + this.txtRemotedirectory.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtRemotedirectory_KeyPress); + // + // refreshBut + // + this.refreshBut.Location = new System.Drawing.Point(664, 3); + this.refreshBut.Name = "refreshBut"; + this.refreshBut.Size = new System.Drawing.Size(94, 24); + this.refreshBut.TabIndex = 1; + this.refreshBut.Text = "刷新目录"; + this.refreshBut.UseVisualStyleBackColor = true; + this.refreshBut.Click += new System.EventHandler(this.button2_Click); + // + // label1 + // + this.label1.Anchor = System.Windows.Forms.AnchorStyles.Right; + this.label1.AutoSize = true; + this.label1.Location = new System.Drawing.Point(11, 9); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(59, 12); + this.label1.TabIndex = 3; + this.label1.Text = "远程目录:"; + // + // statusStrip1 + // + this.statusStrip1.ImageScalingSize = new System.Drawing.Size(20, 20); + this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.transferCaption, + this.toolStripStatusLabel3, + this.time, + this.transferDatalenght, + this.transferProgress, + this.toolStripDropDownButton1}); + this.statusStrip1.Location = new System.Drawing.Point(0, 493); + this.statusStrip1.Name = "statusStrip1"; + this.statusStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode; + this.statusStrip1.Size = new System.Drawing.Size(861, 23); + this.statusStrip1.TabIndex = 5; + this.statusStrip1.Text = "statusStrip1"; + // + // transferCaption + // + this.transferCaption.Name = "transferCaption"; + this.transferCaption.Size = new System.Drawing.Size(0, 18); + // + // toolStripStatusLabel3 + // + this.toolStripStatusLabel3.Name = "toolStripStatusLabel3"; + this.toolStripStatusLabel3.Size = new System.Drawing.Size(568, 18); + this.toolStripStatusLabel3.Spring = true; + // + // time + // + this.time.Name = "time"; + this.time.Size = new System.Drawing.Size(0, 18); + // + // transferDatalenght + // + this.transferDatalenght.AutoSize = false; + this.transferDatalenght.Name = "transferDatalenght"; + this.transferDatalenght.Size = new System.Drawing.Size(120, 18); + this.transferDatalenght.Text = "已接收0KB"; + // + // transferProgress + // + this.transferProgress.Name = "transferProgress"; + this.transferProgress.Size = new System.Drawing.Size(120, 17); + // + // toolStripDropDownButton1 + // + this.toolStripDropDownButton1.BackColor = System.Drawing.SystemColors.Control; + this.toolStripDropDownButton1.Name = "toolStripDropDownButton1"; + this.toolStripDropDownButton1.ShowDropDownArrow = false; + this.toolStripDropDownButton1.Size = new System.Drawing.Size(36, 21); + this.toolStripDropDownButton1.Text = "停止"; + this.toolStripDropDownButton1.Click += new System.EventHandler(this.toolStripDropDownButton1_Click); + // + // label2 + // + this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.label2.AutoSize = true; + this.label2.Location = new System.Drawing.Point(10, 476); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(59, 12); + this.label2.TabIndex = 7; + this.label2.Text = "下载目录:"; + // + // txtSavePath + // + this.txtSavePath.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.txtSavePath.AutoSize = true; + this.txtSavePath.Location = new System.Drawing.Point(74, 476); + this.txtSavePath.Name = "txtSavePath"; + this.txtSavePath.Size = new System.Drawing.Size(23, 12); + this.txtSavePath.TabIndex = 8; + this.txtSavePath.TabStop = true; + this.txtSavePath.Text = "C:\\"; + this.txtSavePath.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.savePath_LinkClicked); + // + // linkLabel1 + // + this.linkLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.linkLabel1.AutoSize = true; + this.linkLabel1.Location = new System.Drawing.Point(796, 476); + this.linkLabel1.Name = "linkLabel1"; + this.linkLabel1.Size = new System.Drawing.Size(53, 12); + this.linkLabel1.TabIndex = 9; + this.linkLabel1.TabStop = true; + this.linkLabel1.Text = "设置目录"; + this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked); + // + // treeContext + // + this.treeContext.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.打开目录ToolStripMenuItem}); + this.treeContext.Name = "treeContext"; + this.treeContext.Size = new System.Drawing.Size(125, 26); + // + // 打开目录ToolStripMenuItem + // + this.打开目录ToolStripMenuItem.Name = "打开目录ToolStripMenuItem"; + this.打开目录ToolStripMenuItem.Size = new System.Drawing.Size(124, 22); + this.打开目录ToolStripMenuItem.Text = "打开目录"; + this.打开目录ToolStripMenuItem.Click += new System.EventHandler(this.打开目录ToolStripMenuItem_Click); + // + // fileList + // + this.fileList.AllowDrop = true; + this.fileList.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.fileList.CheckBoxes = true; + this.fileList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { + this.columnHeader1, + this.columnHeader2, + this.columnHeader3, + this.columnHeader4}); + this.fileList.ContextMenuStrip = this.cmdContext; + this.fileList.FullRowSelect = true; + this.fileList.HideSelection = false; + this.fileList.Location = new System.Drawing.Point(12, 30); + this.fileList.Name = "fileList"; + this.fileList.Size = new System.Drawing.Size(837, 442); + this.fileList.TabIndex = 4; + this.fileList.UseCompatibleStateImageBehavior = false; + this.fileList.UseWindowsThemStyle = true; + this.fileList.View = System.Windows.Forms.View.Details; + this.fileList.DragDrop += new System.Windows.Forms.DragEventHandler(this.fileList_DragDrop); + this.fileList.DragEnter += new System.Windows.Forms.DragEventHandler(this.fileList_DragEnter); + this.fileList.DoubleClick += new System.EventHandler(this.m_files_DoubleClick); + // + // columnHeader1 + // + this.columnHeader1.Text = "名称"; + this.columnHeader1.Width = 250; + // + // columnHeader2 + // + this.columnHeader2.Text = "大小"; + this.columnHeader2.Width = 120; + // + // columnHeader3 + // + this.columnHeader3.Text = "类型"; + this.columnHeader3.Width = 100; + // + // columnHeader4 + // + this.columnHeader4.Text = "修改日期"; + this.columnHeader4.Width = 130; + // + // FileApplication + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(861, 516); + this.Controls.Add(this.linkLabel1); + this.Controls.Add(this.txtSavePath); + this.Controls.Add(this.label2); + this.Controls.Add(this.fileList); + this.Controls.Add(this.tableLayoutPanel1); + this.Controls.Add(this.statusStrip1); + this.Name = "FileApplication"; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; + this.Text = "远程文件管理"; + this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FileManager_FormClosing); + this.Load += new System.EventHandler(this.FileManager_Load); + this.cmdContext.ResumeLayout(false); + this.tableLayoutPanel1.ResumeLayout(false); + this.tableLayoutPanel1.PerformLayout(); + this.statusStrip1.ResumeLayout(false); + this.statusStrip1.PerformLayout(); + this.treeContext.ResumeLayout(false); + this.ResumeLayout(false); + this.PerformLayout(); + } #endregion @@ -541,6 +542,6 @@ private System.Windows.Forms.ToolStripStatusLabel time; private System.Windows.Forms.ToolStripMenuItem downloadAsToolStripMenuItem; private System.Windows.Forms.ContextMenuStrip treeContext; - private System.Windows.Forms.ToolStripMenuItem 打开目录ToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem 打开目录ToolStripMenuItem; } } \ No newline at end of file diff --git a/SiMay.RemoteMonitor/Application/FileApplication.cs b/SiMay.RemoteMonitor/Application/FileApplication.cs index e8f0074e550d2f2624fa14d78d2c1f847d58b21c..b6f28ea0f3392fc5665226a4091c99c2ebe87909 100644 --- a/SiMay.RemoteMonitor/Application/FileApplication.cs +++ b/SiMay.RemoteMonitor/Application/FileApplication.cs @@ -18,7 +18,6 @@ using System.Diagnostics; using System.IO; using System.Linq; using System.Text; -using System.Threading; using System.Threading.Tasks; using System.Windows.Forms; using static SiMay.RemoteMonitor.Win32Api; @@ -716,7 +715,9 @@ namespace SiMay.RemoteMonitor.Application } private void OnFileTransferProgressEventHandler(RemoteFileAdapterHandler adapterHandler, FileTransferFlag state, string fileName, long position, long fileSize) - { + { + + if (this.RemoteFileAdapterHandler.IsClose)//UI未关闭时才允许操作控件 return; @@ -725,13 +726,13 @@ namespace SiMay.RemoteMonitor.Application case FileTransferFlag.Begin: if (fileSize > 0) this.transferProgress.Value = Convert.ToInt32(position / (float)fileSize * 100); - this.transferDatalenght.Text = $"已传输{FileHelper.LengthToFileSize(position)}"; + this.transferDatalenght.Text = $"已传输{FileHelper.LengthToFileSize(position).PadRight(10)}"; this.time.Text = "传输时间:{0}s".FormatTo((DateTime.Now - _startTime).TotalSeconds.ToString("0")); break; case FileTransferFlag.Transfering: this.transferProgress.Value = Convert.ToInt32(position / (float)fileSize * 100); this.transferCaption.Text = $"正在传输:{Path.GetFileName(fileName)} 文件大小:{FileHelper.LengthToFileSize(fileSize)}"; - this.transferDatalenght.Text = $"已传输:{FileHelper.LengthToFileSize(position)}"; + this.transferDatalenght.Text = $"已传输:{FileHelper.LengthToFileSize(position).PadRight(10)}"; this.time.Text = "传输时间:{0}s".FormatTo((DateTime.Now - _startTime).TotalSeconds.ToString("0")); break; case FileTransferFlag.End: @@ -741,6 +742,7 @@ namespace SiMay.RemoteMonitor.Application break; } + } private async Task DownloadDirectory(string remotedirectory, string localdirectory) { @@ -812,6 +814,17 @@ namespace SiMay.RemoteMonitor.Application Process.Start(txtSavePath.Text); } + private void toolStripMenuItem5_Click(object sender, EventArgs e) + { + if (fileList.SelectedItems.Count > 0) + { + var file = fileList.Items[fileList.SelectedItems[0].Index] as FileListViewItem; + if (MessageBox.Show("确定要运行 " + file.FileName + " ?", "提示", MessageBoxButtons.OKCancel, MessageBoxIcon.Exclamation) != DialogResult.OK) + return; + this.RemoteFileAdapterHandler.RemoteExecuteFile(Path.Combine(txtRemotedirectory.Text, file.FileName)); + } + } + private void 刷新目录ToolStripMenuItem_Click(object sender, EventArgs e) { button2_Click(null, null); @@ -966,16 +979,7 @@ namespace SiMay.RemoteMonitor.Application txtSavePath.Text = dlg.SelectedPath; } } - private void ToolStripMenuItem5_Click(object sender, EventArgs e) - { - if (fileList.SelectedItems.Count > 0) - { - var file = fileList.Items[fileList.SelectedItems[0].Index] as FileListViewItem; - if (MessageBox.Show("确定要运行 " + file.FileName + " ?", "提示", MessageBoxButtons.OKCancel, MessageBoxIcon.Exclamation) != DialogResult.OK) - return; - this.RemoteFileAdapterHandler.RemoteExecuteFile(Path.Combine(txtRemotedirectory.Text, file.FileName)); - } - } + private void 下载到ToolStripMenuItem_Click(object sender, EventArgs e) { @@ -1059,6 +1063,10 @@ namespace SiMay.RemoteMonitor.Application { if (e.KeyChar == 13) this.RemoteFileAdapterHandler.GetRemoteFiles(txtRemotedirectory.Text); - } + } + + + + } } \ No newline at end of file diff --git a/SiMay.RemoteMonitor/Application/FileApplication.resx b/SiMay.RemoteMonitor/Application/FileApplication.resx index 8d12db52fda62f1b7830600a755bfd70258683c9..a60c96b3a7f34d4ad78f3b7a0d321386ab87c41d 100644 --- a/SiMay.RemoteMonitor/Application/FileApplication.resx +++ b/SiMay.RemoteMonitor/Application/FileApplication.resx @@ -1,129 +1,129 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 138, 17 - - - 17, 17 - - - 261, 17 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 138, 17 + + + 17, 17 + + + 261, 17 + \ No newline at end of file diff --git a/SiMay.RemoteMonitor/Application/RegEditorApplication.designer.cs b/SiMay.RemoteMonitor/Application/RegEditorApplication.designer.cs index c61676af7a77b1a0ca23dacc2c16162a3f11018a..af2555ec0ce6fb29d12d7815ab2fc70d37f20528 100644 --- a/SiMay.RemoteMonitor/Application/RegEditorApplication.designer.cs +++ b/SiMay.RemoteMonitor/Application/RegEditorApplication.designer.cs @@ -32,607 +32,606 @@ namespace SiMay.RemoteMonitor.Application /// private void InitializeComponent() { - this.components = new System.ComponentModel.Container(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RegEditorApplication)); - this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel(); - this.splitContainer = new System.Windows.Forms.SplitContainer(); - this.tvRegistryDirectory = new SiMay.RemoteMonitor.UserControls.RegistryTreeView(); - this.imageRegistryDirectoryList = new System.Windows.Forms.ImageList(this.components); - this.lstRegistryValues = new SiMay.RemoteMonitor.UserControls.UListView(); - this.hName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); - this.hType = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); - this.hValue = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); - this.imageRegistryKeyTypeList = new System.Windows.Forms.ImageList(this.components); - this.statusStrip = new System.Windows.Forms.StatusStrip(); - this.selectedStripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); - this.menuStrip = new System.Windows.Forms.MenuStrip(); - this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.modifyToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); - this.modifyBinaryDataToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); - this.modifyNewtoolStripSeparator = new System.Windows.Forms.ToolStripSeparator(); - this.newToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem(); - this.keyToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator(); - this.stringValueToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem(); - this.binaryValueToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem(); - this.dWORD32bitValueToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem(); - this.qWORD64bitValueToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem(); - this.multiStringValueToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem(); - this.expandableStringValueToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator(); - this.deleteToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem(); - this.renameToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem(); - this.tv_ContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components); - this.newToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.keyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); - this.stringValueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.binaryValueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.dWORD32bitValueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.qWORD64bitValueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.multiStringValueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.expandableStringValueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); - this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.renameToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.selectedItem_ContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components); - this.modifyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.modifyBinaryDataToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.modifyToolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); - this.deleteToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); - this.renameToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); - this.lst_ContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components); - this.newToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); - this.keyToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator(); - this.stringValueToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); - this.binaryValueToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); - this.dWORD32bitValueToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); - this.qWORD64bitValueToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); - this.multiStringValueToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); - this.expandableStringValueToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); - this.tableLayoutPanel.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit(); - this.splitContainer.Panel1.SuspendLayout(); - this.splitContainer.Panel2.SuspendLayout(); - this.splitContainer.SuspendLayout(); - this.statusStrip.SuspendLayout(); - this.menuStrip.SuspendLayout(); - this.tv_ContextMenuStrip.SuspendLayout(); - this.selectedItem_ContextMenuStrip.SuspendLayout(); - this.lst_ContextMenuStrip.SuspendLayout(); - this.SuspendLayout(); - // - // tableLayoutPanel - // - this.tableLayoutPanel.ColumnCount = 1; - this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); - this.tableLayoutPanel.Controls.Add(this.splitContainer, 0, 1); - this.tableLayoutPanel.Controls.Add(this.statusStrip, 0, 2); - this.tableLayoutPanel.Controls.Add(this.menuStrip, 0, 0); - this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill; - this.tableLayoutPanel.GrowStyle = System.Windows.Forms.TableLayoutPanelGrowStyle.FixedSize; - this.tableLayoutPanel.Location = new System.Drawing.Point(0, 0); - this.tableLayoutPanel.Name = "tableLayoutPanel"; - this.tableLayoutPanel.RowCount = 3; - this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F)); - this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); - this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 22F)); - this.tableLayoutPanel.Size = new System.Drawing.Size(935, 648); - this.tableLayoutPanel.TabIndex = 0; - // - // splitContainer - // - this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill; - this.splitContainer.Location = new System.Drawing.Point(3, 28); - this.splitContainer.Name = "splitContainer"; - // - // splitContainer.Panel1 - // - this.splitContainer.Panel1.Controls.Add(this.tvRegistryDirectory); - // - // splitContainer.Panel2 - // - this.splitContainer.Panel2.Controls.Add(this.lstRegistryValues); - this.splitContainer.Size = new System.Drawing.Size(929, 595); - this.splitContainer.SplitterDistance = 309; - this.splitContainer.TabIndex = 0; - // - // tvRegistryDirectory - // - this.tvRegistryDirectory.Dock = System.Windows.Forms.DockStyle.Fill; - this.tvRegistryDirectory.HideSelection = false; - this.tvRegistryDirectory.ImageIndex = 0; - this.tvRegistryDirectory.ImageList = this.imageRegistryDirectoryList; - this.tvRegistryDirectory.Location = new System.Drawing.Point(0, 0); - this.tvRegistryDirectory.Name = "tvRegistryDirectory"; - this.tvRegistryDirectory.SelectedImageIndex = 0; - this.tvRegistryDirectory.Size = new System.Drawing.Size(309, 595); - this.tvRegistryDirectory.TabIndex = 0; - this.tvRegistryDirectory.AfterLabelEdit += new System.Windows.Forms.NodeLabelEditEventHandler(this.tvRegistryDirectory_AfterLabelEdit); - this.tvRegistryDirectory.BeforeExpand += new System.Windows.Forms.TreeViewCancelEventHandler(this.tvRegistryDirectory_BeforeExpand); - this.tvRegistryDirectory.BeforeSelect += new System.Windows.Forms.TreeViewCancelEventHandler(this.tvRegistryDirectory_BeforeSelect); - this.tvRegistryDirectory.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.tvRegistryDirectory_NodeMouseClick); - this.tvRegistryDirectory.KeyUp += new System.Windows.Forms.KeyEventHandler(this.tvRegistryDirectory_KeyUp); - // - // imageRegistryDirectoryList - // - this.imageRegistryDirectoryList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageRegistryDirectoryList.ImageStream"))); - this.imageRegistryDirectoryList.TransparentColor = System.Drawing.Color.Transparent; - this.imageRegistryDirectoryList.Images.SetKeyName(0, "folder.png"); - // - // lstRegistryValues - // - this.lstRegistryValues.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { - this.hName, - this.hType, - this.hValue}); - this.lstRegistryValues.Dock = System.Windows.Forms.DockStyle.Fill; - this.lstRegistryValues.FullRowSelect = true; - this.lstRegistryValues.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable; - this.lstRegistryValues.HideSelection = false; - this.lstRegistryValues.Location = new System.Drawing.Point(0, 0); - this.lstRegistryValues.Name = "lstRegistryValues"; - this.lstRegistryValues.Size = new System.Drawing.Size(616, 595); - this.lstRegistryValues.SmallImageList = this.imageRegistryKeyTypeList; - this.lstRegistryValues.TabIndex = 0; - this.lstRegistryValues.UseCompatibleStateImageBehavior = false; - this.lstRegistryValues.UseWindowsThemStyle = true; - this.lstRegistryValues.View = System.Windows.Forms.View.Details; - this.lstRegistryValues.AfterLabelEdit += new System.Windows.Forms.LabelEditEventHandler(this.lstRegistryKeys_AfterLabelEdit); - this.lstRegistryValues.KeyUp += new System.Windows.Forms.KeyEventHandler(this.lstRegistryKeys_KeyUp); - this.lstRegistryValues.MouseUp += new System.Windows.Forms.MouseEventHandler(this.lstRegistryKeys_MouseClick); - // - // hName - // - this.hName.Text = "Name"; - this.hName.Width = 173; - // - // hType - // - this.hType.Text = "Type"; - this.hType.Width = 104; - // - // hValue - // - this.hValue.Text = "Value"; - this.hValue.Width = 214; - // - // imageRegistryKeyTypeList - // - this.imageRegistryKeyTypeList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageRegistryKeyTypeList.ImageStream"))); - this.imageRegistryKeyTypeList.TransparentColor = System.Drawing.Color.Transparent; - this.imageRegistryKeyTypeList.Images.SetKeyName(0, "reg_string.png"); - this.imageRegistryKeyTypeList.Images.SetKeyName(1, "reg_binary.png"); - // - // statusStrip - // - this.statusStrip.Dock = System.Windows.Forms.DockStyle.Fill; - this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.selectedStripStatusLabel}); - this.statusStrip.Location = new System.Drawing.Point(0, 626); - this.statusStrip.Name = "statusStrip"; - this.statusStrip.Size = new System.Drawing.Size(935, 22); - this.statusStrip.TabIndex = 1; - this.statusStrip.Text = "statusStrip"; - // - // selectedStripStatusLabel - // - this.selectedStripStatusLabel.Name = "selectedStripStatusLabel"; - this.selectedStripStatusLabel.Size = new System.Drawing.Size(0, 17); - // - // menuStrip - // - this.menuStrip.Dock = System.Windows.Forms.DockStyle.None; - this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.fileToolStripMenuItem, - this.editToolStripMenuItem}); - this.menuStrip.Location = new System.Drawing.Point(0, 0); - this.menuStrip.Name = "menuStrip"; - this.menuStrip.Size = new System.Drawing.Size(89, 25); - this.menuStrip.TabIndex = 2; - // - // fileToolStripMenuItem - // - this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.exitToolStripMenuItem}); - this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; - this.fileToolStripMenuItem.Size = new System.Drawing.Size(39, 21); - this.fileToolStripMenuItem.Text = "File"; - // - // exitToolStripMenuItem - // - this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; - this.exitToolStripMenuItem.Size = new System.Drawing.Size(96, 22); - this.exitToolStripMenuItem.Text = "Exit"; - this.exitToolStripMenuItem.Click += new System.EventHandler(this.menuStripExit_Click); - // - // editToolStripMenuItem - // - this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.modifyToolStripMenuItem1, - this.modifyBinaryDataToolStripMenuItem1, - this.modifyNewtoolStripSeparator, - this.newToolStripMenuItem2, - this.toolStripSeparator6, - this.deleteToolStripMenuItem2, - this.renameToolStripMenuItem2}); - this.editToolStripMenuItem.Name = "editToolStripMenuItem"; - this.editToolStripMenuItem.Size = new System.Drawing.Size(42, 21); - this.editToolStripMenuItem.Text = "Edit"; - this.editToolStripMenuItem.DropDownOpening += new System.EventHandler(this.editToolStripMenuItem_DropDownOpening); - // - // modifyToolStripMenuItem1 - // - this.modifyToolStripMenuItem1.Enabled = false; - this.modifyToolStripMenuItem1.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.modifyToolStripMenuItem1.Name = "modifyToolStripMenuItem1"; - this.modifyToolStripMenuItem1.Size = new System.Drawing.Size(197, 22); - this.modifyToolStripMenuItem1.Text = "Modify..."; - this.modifyToolStripMenuItem1.Visible = false; - this.modifyToolStripMenuItem1.Click += new System.EventHandler(this.modifyRegistryValue_Click); - // - // modifyBinaryDataToolStripMenuItem1 - // - this.modifyBinaryDataToolStripMenuItem1.Enabled = false; - this.modifyBinaryDataToolStripMenuItem1.Name = "modifyBinaryDataToolStripMenuItem1"; - this.modifyBinaryDataToolStripMenuItem1.Size = new System.Drawing.Size(197, 22); - this.modifyBinaryDataToolStripMenuItem1.Text = "Modify Binary Data..."; - this.modifyBinaryDataToolStripMenuItem1.Visible = false; - this.modifyBinaryDataToolStripMenuItem1.Click += new System.EventHandler(this.modifyBinaryDataRegistryValue_Click); - // - // modifyNewtoolStripSeparator - // - this.modifyNewtoolStripSeparator.Name = "modifyNewtoolStripSeparator"; - this.modifyNewtoolStripSeparator.Size = new System.Drawing.Size(194, 6); - this.modifyNewtoolStripSeparator.Visible = false; - // - // newToolStripMenuItem2 - // - this.newToolStripMenuItem2.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.keyToolStripMenuItem2, - this.toolStripSeparator7, - this.stringValueToolStripMenuItem2, - this.binaryValueToolStripMenuItem2, - this.dWORD32bitValueToolStripMenuItem2, - this.qWORD64bitValueToolStripMenuItem2, - this.multiStringValueToolStripMenuItem2, - this.expandableStringValueToolStripMenuItem2}); - this.newToolStripMenuItem2.Name = "newToolStripMenuItem2"; - this.newToolStripMenuItem2.Size = new System.Drawing.Size(197, 22); - this.newToolStripMenuItem2.Text = "New"; - // - // keyToolStripMenuItem2 - // - this.keyToolStripMenuItem2.Name = "keyToolStripMenuItem2"; - this.keyToolStripMenuItem2.Size = new System.Drawing.Size(218, 22); - this.keyToolStripMenuItem2.Text = "Key"; - this.keyToolStripMenuItem2.Click += new System.EventHandler(this.createNewRegistryKey_Click); - // - // toolStripSeparator7 - // - this.toolStripSeparator7.Name = "toolStripSeparator7"; - this.toolStripSeparator7.Size = new System.Drawing.Size(215, 6); - // - // stringValueToolStripMenuItem2 - // - this.stringValueToolStripMenuItem2.Name = "stringValueToolStripMenuItem2"; - this.stringValueToolStripMenuItem2.Size = new System.Drawing.Size(218, 22); - this.stringValueToolStripMenuItem2.Text = "String Value"; - this.stringValueToolStripMenuItem2.Click += new System.EventHandler(this.createStringRegistryValue_Click); - // - // binaryValueToolStripMenuItem2 - // - this.binaryValueToolStripMenuItem2.Name = "binaryValueToolStripMenuItem2"; - this.binaryValueToolStripMenuItem2.Size = new System.Drawing.Size(218, 22); - this.binaryValueToolStripMenuItem2.Text = "Binary Value"; - this.binaryValueToolStripMenuItem2.Click += new System.EventHandler(this.createBinaryRegistryValue_Click); - // - // dWORD32bitValueToolStripMenuItem2 - // - this.dWORD32bitValueToolStripMenuItem2.Name = "dWORD32bitValueToolStripMenuItem2"; - this.dWORD32bitValueToolStripMenuItem2.Size = new System.Drawing.Size(218, 22); - this.dWORD32bitValueToolStripMenuItem2.Text = "DWORD (32-bit) Value"; - this.dWORD32bitValueToolStripMenuItem2.Click += new System.EventHandler(this.createDwordRegistryValue_Click); - // - // qWORD64bitValueToolStripMenuItem2 - // - this.qWORD64bitValueToolStripMenuItem2.Name = "qWORD64bitValueToolStripMenuItem2"; - this.qWORD64bitValueToolStripMenuItem2.Size = new System.Drawing.Size(218, 22); - this.qWORD64bitValueToolStripMenuItem2.Text = "QWORD (64-bit) Value"; - this.qWORD64bitValueToolStripMenuItem2.Click += new System.EventHandler(this.createQwordRegistryValue_Click); - // - // multiStringValueToolStripMenuItem2 - // - this.multiStringValueToolStripMenuItem2.Name = "multiStringValueToolStripMenuItem2"; - this.multiStringValueToolStripMenuItem2.Size = new System.Drawing.Size(218, 22); - this.multiStringValueToolStripMenuItem2.Text = "Multi-String Value"; - this.multiStringValueToolStripMenuItem2.Click += new System.EventHandler(this.createMultiStringRegistryValue_Click); - // - // expandableStringValueToolStripMenuItem2 - // - this.expandableStringValueToolStripMenuItem2.Name = "expandableStringValueToolStripMenuItem2"; - this.expandableStringValueToolStripMenuItem2.Size = new System.Drawing.Size(218, 22); - this.expandableStringValueToolStripMenuItem2.Text = "Expandable String Value"; - this.expandableStringValueToolStripMenuItem2.Click += new System.EventHandler(this.createExpandStringRegistryValue_Click); - // - // toolStripSeparator6 - // - this.toolStripSeparator6.Name = "toolStripSeparator6"; - this.toolStripSeparator6.Size = new System.Drawing.Size(194, 6); - // - // deleteToolStripMenuItem2 - // - this.deleteToolStripMenuItem2.Enabled = false; - this.deleteToolStripMenuItem2.Name = "deleteToolStripMenuItem2"; - this.deleteToolStripMenuItem2.ShortcutKeyDisplayString = "Del"; - this.deleteToolStripMenuItem2.Size = new System.Drawing.Size(197, 22); - this.deleteToolStripMenuItem2.Text = "Delete"; - this.deleteToolStripMenuItem2.Click += new System.EventHandler(this.menuStripDelete_Click); - // - // renameToolStripMenuItem2 - // - this.renameToolStripMenuItem2.Enabled = false; - this.renameToolStripMenuItem2.Name = "renameToolStripMenuItem2"; - this.renameToolStripMenuItem2.Size = new System.Drawing.Size(197, 22); - this.renameToolStripMenuItem2.Text = "Rename"; - this.renameToolStripMenuItem2.Click += new System.EventHandler(this.menuStripRename_Click); - // - // tv_ContextMenuStrip - // - this.tv_ContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.newToolStripMenuItem, - this.toolStripSeparator1, - this.deleteToolStripMenuItem, - this.renameToolStripMenuItem}); - this.tv_ContextMenuStrip.Name = "contextMenuStrip"; - this.tv_ContextMenuStrip.Size = new System.Drawing.Size(124, 76); - // - // newToolStripMenuItem - // - this.newToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.keyToolStripMenuItem, - this.toolStripSeparator2, - this.stringValueToolStripMenuItem, - this.binaryValueToolStripMenuItem, - this.dWORD32bitValueToolStripMenuItem, - this.qWORD64bitValueToolStripMenuItem, - this.multiStringValueToolStripMenuItem, - this.expandableStringValueToolStripMenuItem}); - this.newToolStripMenuItem.Name = "newToolStripMenuItem"; - this.newToolStripMenuItem.Size = new System.Drawing.Size(123, 22); - this.newToolStripMenuItem.Text = "New"; - // - // keyToolStripMenuItem - // - this.keyToolStripMenuItem.Name = "keyToolStripMenuItem"; - this.keyToolStripMenuItem.Size = new System.Drawing.Size(218, 22); - this.keyToolStripMenuItem.Text = "Key"; - this.keyToolStripMenuItem.Click += new System.EventHandler(this.createNewRegistryKey_Click); - // - // toolStripSeparator2 - // - this.toolStripSeparator2.Name = "toolStripSeparator2"; - this.toolStripSeparator2.Size = new System.Drawing.Size(215, 6); - // - // stringValueToolStripMenuItem - // - this.stringValueToolStripMenuItem.Name = "stringValueToolStripMenuItem"; - this.stringValueToolStripMenuItem.Size = new System.Drawing.Size(218, 22); - this.stringValueToolStripMenuItem.Text = "String Value"; - this.stringValueToolStripMenuItem.Click += new System.EventHandler(this.createStringRegistryValue_Click); - // - // binaryValueToolStripMenuItem - // - this.binaryValueToolStripMenuItem.Name = "binaryValueToolStripMenuItem"; - this.binaryValueToolStripMenuItem.Size = new System.Drawing.Size(218, 22); - this.binaryValueToolStripMenuItem.Text = "Binary Value"; - this.binaryValueToolStripMenuItem.Click += new System.EventHandler(this.createBinaryRegistryValue_Click); - // - // dWORD32bitValueToolStripMenuItem - // - this.dWORD32bitValueToolStripMenuItem.Name = "dWORD32bitValueToolStripMenuItem"; - this.dWORD32bitValueToolStripMenuItem.Size = new System.Drawing.Size(218, 22); - this.dWORD32bitValueToolStripMenuItem.Text = "DWORD (32-bit) Value"; - this.dWORD32bitValueToolStripMenuItem.Click += new System.EventHandler(this.createDwordRegistryValue_Click); - // - // qWORD64bitValueToolStripMenuItem - // - this.qWORD64bitValueToolStripMenuItem.Name = "qWORD64bitValueToolStripMenuItem"; - this.qWORD64bitValueToolStripMenuItem.Size = new System.Drawing.Size(218, 22); - this.qWORD64bitValueToolStripMenuItem.Text = "QWORD (64-bit) Value"; - this.qWORD64bitValueToolStripMenuItem.Click += new System.EventHandler(this.createQwordRegistryValue_Click); - // - // multiStringValueToolStripMenuItem - // - this.multiStringValueToolStripMenuItem.Name = "multiStringValueToolStripMenuItem"; - this.multiStringValueToolStripMenuItem.Size = new System.Drawing.Size(218, 22); - this.multiStringValueToolStripMenuItem.Text = "Multi-String Value"; - this.multiStringValueToolStripMenuItem.Click += new System.EventHandler(this.createMultiStringRegistryValue_Click); - // - // expandableStringValueToolStripMenuItem - // - this.expandableStringValueToolStripMenuItem.Name = "expandableStringValueToolStripMenuItem"; - this.expandableStringValueToolStripMenuItem.Size = new System.Drawing.Size(218, 22); - this.expandableStringValueToolStripMenuItem.Text = "Expandable String Value"; - this.expandableStringValueToolStripMenuItem.Click += new System.EventHandler(this.createExpandStringRegistryValue_Click); - // - // toolStripSeparator1 - // - this.toolStripSeparator1.Name = "toolStripSeparator1"; - this.toolStripSeparator1.Size = new System.Drawing.Size(120, 6); - // - // deleteToolStripMenuItem - // - this.deleteToolStripMenuItem.Enabled = false; - this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem"; - this.deleteToolStripMenuItem.Size = new System.Drawing.Size(123, 22); - this.deleteToolStripMenuItem.Text = "Delete"; - this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteRegistryKey_Click); - // - // renameToolStripMenuItem - // - this.renameToolStripMenuItem.Enabled = false; - this.renameToolStripMenuItem.Name = "renameToolStripMenuItem"; - this.renameToolStripMenuItem.Size = new System.Drawing.Size(123, 22); - this.renameToolStripMenuItem.Text = "Rename"; - this.renameToolStripMenuItem.Click += new System.EventHandler(this.renameRegistryKey_Click); - // - // selectedItem_ContextMenuStrip - // - this.selectedItem_ContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.modifyToolStripMenuItem, - this.modifyBinaryDataToolStripMenuItem, - this.modifyToolStripSeparator1, - this.deleteToolStripMenuItem1, - this.renameToolStripMenuItem1}); - this.selectedItem_ContextMenuStrip.Name = "selectedItem_ContextMenuStrip"; - this.selectedItem_ContextMenuStrip.Size = new System.Drawing.Size(198, 98); - // - // modifyToolStripMenuItem - // - this.modifyToolStripMenuItem.Enabled = false; - this.modifyToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.modifyToolStripMenuItem.Name = "modifyToolStripMenuItem"; - this.modifyToolStripMenuItem.Size = new System.Drawing.Size(197, 22); - this.modifyToolStripMenuItem.Text = "Modify..."; - this.modifyToolStripMenuItem.Click += new System.EventHandler(this.modifyRegistryValue_Click); - // - // modifyBinaryDataToolStripMenuItem - // - this.modifyBinaryDataToolStripMenuItem.Enabled = false; - this.modifyBinaryDataToolStripMenuItem.Name = "modifyBinaryDataToolStripMenuItem"; - this.modifyBinaryDataToolStripMenuItem.Size = new System.Drawing.Size(197, 22); - this.modifyBinaryDataToolStripMenuItem.Text = "Modify Binary Data..."; - this.modifyBinaryDataToolStripMenuItem.Click += new System.EventHandler(this.modifyBinaryDataRegistryValue_Click); - // - // modifyToolStripSeparator1 - // - this.modifyToolStripSeparator1.Name = "modifyToolStripSeparator1"; - this.modifyToolStripSeparator1.Size = new System.Drawing.Size(194, 6); - // - // deleteToolStripMenuItem1 - // - this.deleteToolStripMenuItem1.Name = "deleteToolStripMenuItem1"; - this.deleteToolStripMenuItem1.Size = new System.Drawing.Size(197, 22); - this.deleteToolStripMenuItem1.Text = "Delete"; - this.deleteToolStripMenuItem1.Click += new System.EventHandler(this.deleteRegistryValue_Click); - // - // renameToolStripMenuItem1 - // - this.renameToolStripMenuItem1.Name = "renameToolStripMenuItem1"; - this.renameToolStripMenuItem1.Size = new System.Drawing.Size(197, 22); - this.renameToolStripMenuItem1.Text = "Rename"; - this.renameToolStripMenuItem1.Click += new System.EventHandler(this.renameRegistryValue_Click); - // - // lst_ContextMenuStrip - // - this.lst_ContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.newToolStripMenuItem1}); - this.lst_ContextMenuStrip.Name = "lst_ContextMenuStrip"; - this.lst_ContextMenuStrip.Size = new System.Drawing.Size(103, 26); - // - // newToolStripMenuItem1 - // - this.newToolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.keyToolStripMenuItem1, - this.toolStripSeparator4, - this.stringValueToolStripMenuItem1, - this.binaryValueToolStripMenuItem1, - this.dWORD32bitValueToolStripMenuItem1, - this.qWORD64bitValueToolStripMenuItem1, - this.multiStringValueToolStripMenuItem1, - this.expandableStringValueToolStripMenuItem1}); - this.newToolStripMenuItem1.Name = "newToolStripMenuItem1"; - this.newToolStripMenuItem1.Size = new System.Drawing.Size(102, 22); - this.newToolStripMenuItem1.Text = "New"; - // - // keyToolStripMenuItem1 - // - this.keyToolStripMenuItem1.Name = "keyToolStripMenuItem1"; - this.keyToolStripMenuItem1.Size = new System.Drawing.Size(218, 22); - this.keyToolStripMenuItem1.Text = "Key"; - this.keyToolStripMenuItem1.Click += new System.EventHandler(this.createNewRegistryKey_Click); - // - // toolStripSeparator4 - // - this.toolStripSeparator4.Name = "toolStripSeparator4"; - this.toolStripSeparator4.Size = new System.Drawing.Size(215, 6); - // - // stringValueToolStripMenuItem1 - // - this.stringValueToolStripMenuItem1.Name = "stringValueToolStripMenuItem1"; - this.stringValueToolStripMenuItem1.Size = new System.Drawing.Size(218, 22); - this.stringValueToolStripMenuItem1.Text = "String Value"; - this.stringValueToolStripMenuItem1.Click += new System.EventHandler(this.createStringRegistryValue_Click); - // - // binaryValueToolStripMenuItem1 - // - this.binaryValueToolStripMenuItem1.Name = "binaryValueToolStripMenuItem1"; - this.binaryValueToolStripMenuItem1.Size = new System.Drawing.Size(218, 22); - this.binaryValueToolStripMenuItem1.Text = "Binary Value"; - this.binaryValueToolStripMenuItem1.Click += new System.EventHandler(this.createBinaryRegistryValue_Click); - // - // dWORD32bitValueToolStripMenuItem1 - // - this.dWORD32bitValueToolStripMenuItem1.Name = "dWORD32bitValueToolStripMenuItem1"; - this.dWORD32bitValueToolStripMenuItem1.Size = new System.Drawing.Size(218, 22); - this.dWORD32bitValueToolStripMenuItem1.Text = "DWORD (32-bit) Value"; - this.dWORD32bitValueToolStripMenuItem1.Click += new System.EventHandler(this.createDwordRegistryValue_Click); - // - // qWORD64bitValueToolStripMenuItem1 - // - this.qWORD64bitValueToolStripMenuItem1.Name = "qWORD64bitValueToolStripMenuItem1"; - this.qWORD64bitValueToolStripMenuItem1.Size = new System.Drawing.Size(218, 22); - this.qWORD64bitValueToolStripMenuItem1.Text = "QWORD (64-bit) Value"; - this.qWORD64bitValueToolStripMenuItem1.Click += new System.EventHandler(this.createQwordRegistryValue_Click); - // - // multiStringValueToolStripMenuItem1 - // - this.multiStringValueToolStripMenuItem1.Name = "multiStringValueToolStripMenuItem1"; - this.multiStringValueToolStripMenuItem1.Size = new System.Drawing.Size(218, 22); - this.multiStringValueToolStripMenuItem1.Text = "Multi-String Value"; - this.multiStringValueToolStripMenuItem1.Click += new System.EventHandler(this.createMultiStringRegistryValue_Click); - // - // expandableStringValueToolStripMenuItem1 - // - this.expandableStringValueToolStripMenuItem1.Name = "expandableStringValueToolStripMenuItem1"; - this.expandableStringValueToolStripMenuItem1.Size = new System.Drawing.Size(218, 22); - this.expandableStringValueToolStripMenuItem1.Text = "Expandable String Value"; - this.expandableStringValueToolStripMenuItem1.Click += new System.EventHandler(this.createExpandStringRegistryValue_Click); - // - // RegistryEditorForm - // - this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; - this.ClientSize = new System.Drawing.Size(935, 648); - this.Controls.Add(this.tableLayoutPanel); - this.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ForeColor = System.Drawing.Color.Black; - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.MainMenuStrip = this.menuStrip; - this.Name = "RegistryEditorForm"; - this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; - this.Text = "Registry Editor []"; - this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmRegistryEditor_FormClosing); - this.Load += new System.EventHandler(this.FrmRegistryEditor_Load); - this.tableLayoutPanel.ResumeLayout(false); - this.tableLayoutPanel.PerformLayout(); - this.splitContainer.Panel1.ResumeLayout(false); - this.splitContainer.Panel2.ResumeLayout(false); - ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit(); - this.splitContainer.ResumeLayout(false); - this.statusStrip.ResumeLayout(false); - this.statusStrip.PerformLayout(); - this.menuStrip.ResumeLayout(false); - this.menuStrip.PerformLayout(); - this.tv_ContextMenuStrip.ResumeLayout(false); - this.selectedItem_ContextMenuStrip.ResumeLayout(false); - this.lst_ContextMenuStrip.ResumeLayout(false); - this.ResumeLayout(false); - + this.components = new System.ComponentModel.Container(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RegEditorApplication)); + this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel(); + this.splitContainer = new System.Windows.Forms.SplitContainer(); + this.tvRegistryDirectory = new SiMay.RemoteMonitor.UserControls.RegistryTreeView(); + this.imageRegistryDirectoryList = new System.Windows.Forms.ImageList(this.components); + this.lstRegistryValues = new SiMay.RemoteMonitor.UserControls.UListView(); + this.hName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); + this.hType = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); + this.hValue = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); + this.imageRegistryKeyTypeList = new System.Windows.Forms.ImageList(this.components); + this.statusStrip = new System.Windows.Forms.StatusStrip(); + this.selectedStripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); + this.menuStrip = new System.Windows.Forms.MenuStrip(); + this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.modifyToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); + this.modifyBinaryDataToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); + this.modifyNewtoolStripSeparator = new System.Windows.Forms.ToolStripSeparator(); + this.newToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem(); + this.keyToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator(); + this.stringValueToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem(); + this.binaryValueToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem(); + this.dWORD32bitValueToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem(); + this.qWORD64bitValueToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem(); + this.multiStringValueToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem(); + this.expandableStringValueToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator(); + this.deleteToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem(); + this.renameToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem(); + this.tv_ContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components); + this.newToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.keyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); + this.stringValueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.binaryValueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.dWORD32bitValueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.qWORD64bitValueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.multiStringValueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.expandableStringValueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); + this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.renameToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.selectedItem_ContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components); + this.modifyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.modifyBinaryDataToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.modifyToolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); + this.deleteToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); + this.renameToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); + this.lst_ContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components); + this.newToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); + this.keyToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator(); + this.stringValueToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); + this.binaryValueToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); + this.dWORD32bitValueToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); + this.qWORD64bitValueToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); + this.multiStringValueToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); + this.expandableStringValueToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); + this.tableLayoutPanel.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit(); + this.splitContainer.Panel1.SuspendLayout(); + this.splitContainer.Panel2.SuspendLayout(); + this.splitContainer.SuspendLayout(); + this.statusStrip.SuspendLayout(); + this.menuStrip.SuspendLayout(); + this.tv_ContextMenuStrip.SuspendLayout(); + this.selectedItem_ContextMenuStrip.SuspendLayout(); + this.lst_ContextMenuStrip.SuspendLayout(); + this.SuspendLayout(); + // + // tableLayoutPanel + // + this.tableLayoutPanel.ColumnCount = 1; + this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanel.Controls.Add(this.splitContainer, 0, 1); + this.tableLayoutPanel.Controls.Add(this.statusStrip, 0, 2); + this.tableLayoutPanel.Controls.Add(this.menuStrip, 0, 0); + this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill; + this.tableLayoutPanel.GrowStyle = System.Windows.Forms.TableLayoutPanelGrowStyle.FixedSize; + this.tableLayoutPanel.Location = new System.Drawing.Point(0, 0); + this.tableLayoutPanel.Name = "tableLayoutPanel"; + this.tableLayoutPanel.RowCount = 3; + this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F)); + this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 22F)); + this.tableLayoutPanel.Size = new System.Drawing.Size(935, 648); + this.tableLayoutPanel.TabIndex = 0; + // + // splitContainer + // + this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill; + this.splitContainer.Location = new System.Drawing.Point(3, 28); + this.splitContainer.Name = "splitContainer"; + // + // splitContainer.Panel1 + // + this.splitContainer.Panel1.Controls.Add(this.tvRegistryDirectory); + // + // splitContainer.Panel2 + // + this.splitContainer.Panel2.Controls.Add(this.lstRegistryValues); + this.splitContainer.Size = new System.Drawing.Size(929, 595); + this.splitContainer.SplitterDistance = 309; + this.splitContainer.TabIndex = 0; + // + // tvRegistryDirectory + // + this.tvRegistryDirectory.Dock = System.Windows.Forms.DockStyle.Fill; + this.tvRegistryDirectory.HideSelection = false; + this.tvRegistryDirectory.ImageIndex = 0; + this.tvRegistryDirectory.ImageList = this.imageRegistryDirectoryList; + this.tvRegistryDirectory.Location = new System.Drawing.Point(0, 0); + this.tvRegistryDirectory.Name = "tvRegistryDirectory"; + this.tvRegistryDirectory.SelectedImageIndex = 0; + this.tvRegistryDirectory.Size = new System.Drawing.Size(309, 595); + this.tvRegistryDirectory.TabIndex = 0; + this.tvRegistryDirectory.AfterLabelEdit += new System.Windows.Forms.NodeLabelEditEventHandler(this.tvRegistryDirectory_AfterLabelEdit); + this.tvRegistryDirectory.BeforeExpand += new System.Windows.Forms.TreeViewCancelEventHandler(this.tvRegistryDirectory_BeforeExpand); + this.tvRegistryDirectory.BeforeSelect += new System.Windows.Forms.TreeViewCancelEventHandler(this.tvRegistryDirectory_BeforeSelect); + this.tvRegistryDirectory.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.tvRegistryDirectory_NodeMouseClick); + this.tvRegistryDirectory.KeyUp += new System.Windows.Forms.KeyEventHandler(this.tvRegistryDirectory_KeyUp); + // + // imageRegistryDirectoryList + // + this.imageRegistryDirectoryList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageRegistryDirectoryList.ImageStream"))); + this.imageRegistryDirectoryList.TransparentColor = System.Drawing.Color.Transparent; + this.imageRegistryDirectoryList.Images.SetKeyName(0, "folder.png"); + // + // lstRegistryValues + // + this.lstRegistryValues.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { + this.hName, + this.hType, + this.hValue}); + this.lstRegistryValues.Dock = System.Windows.Forms.DockStyle.Fill; + this.lstRegistryValues.FullRowSelect = true; + this.lstRegistryValues.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable; + this.lstRegistryValues.HideSelection = false; + this.lstRegistryValues.Location = new System.Drawing.Point(0, 0); + this.lstRegistryValues.Name = "lstRegistryValues"; + this.lstRegistryValues.Size = new System.Drawing.Size(616, 595); + this.lstRegistryValues.SmallImageList = this.imageRegistryKeyTypeList; + this.lstRegistryValues.TabIndex = 0; + this.lstRegistryValues.UseCompatibleStateImageBehavior = false; + this.lstRegistryValues.UseWindowsThemStyle = true; + this.lstRegistryValues.View = System.Windows.Forms.View.Details; + this.lstRegistryValues.AfterLabelEdit += new System.Windows.Forms.LabelEditEventHandler(this.lstRegistryKeys_AfterLabelEdit); + this.lstRegistryValues.KeyUp += new System.Windows.Forms.KeyEventHandler(this.lstRegistryKeys_KeyUp); + this.lstRegistryValues.MouseUp += new System.Windows.Forms.MouseEventHandler(this.lstRegistryKeys_MouseClick); + // + // hName + // + this.hName.Text = "名称"; + this.hName.Width = 173; + // + // hType + // + this.hType.Text = "类型"; + this.hType.Width = 104; + // + // hValue + // + this.hValue.Text = "数据"; + this.hValue.Width = 214; + // + // imageRegistryKeyTypeList + // + this.imageRegistryKeyTypeList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageRegistryKeyTypeList.ImageStream"))); + this.imageRegistryKeyTypeList.TransparentColor = System.Drawing.Color.Transparent; + this.imageRegistryKeyTypeList.Images.SetKeyName(0, "reg_string.png"); + this.imageRegistryKeyTypeList.Images.SetKeyName(1, "reg_binary.png"); + // + // statusStrip + // + this.statusStrip.Dock = System.Windows.Forms.DockStyle.Fill; + this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.selectedStripStatusLabel}); + this.statusStrip.Location = new System.Drawing.Point(0, 626); + this.statusStrip.Name = "statusStrip"; + this.statusStrip.Size = new System.Drawing.Size(935, 22); + this.statusStrip.TabIndex = 1; + this.statusStrip.Text = "statusStrip"; + // + // selectedStripStatusLabel + // + this.selectedStripStatusLabel.Name = "selectedStripStatusLabel"; + this.selectedStripStatusLabel.Size = new System.Drawing.Size(0, 17); + // + // menuStrip + // + this.menuStrip.Dock = System.Windows.Forms.DockStyle.None; + this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.fileToolStripMenuItem, + this.editToolStripMenuItem}); + this.menuStrip.Location = new System.Drawing.Point(0, 0); + this.menuStrip.Name = "menuStrip"; + this.menuStrip.Size = new System.Drawing.Size(96, 25); + this.menuStrip.TabIndex = 2; + // + // fileToolStripMenuItem + // + this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.exitToolStripMenuItem}); + this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; + this.fileToolStripMenuItem.Size = new System.Drawing.Size(44, 21); + this.fileToolStripMenuItem.Text = "文件"; + // + // exitToolStripMenuItem + // + this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; + this.exitToolStripMenuItem.Size = new System.Drawing.Size(180, 22); + this.exitToolStripMenuItem.Text = "退出"; + this.exitToolStripMenuItem.Click += new System.EventHandler(this.menuStripExit_Click); + // + // editToolStripMenuItem + // + this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.modifyToolStripMenuItem1, + this.modifyBinaryDataToolStripMenuItem1, + this.modifyNewtoolStripSeparator, + this.newToolStripMenuItem2, + this.toolStripSeparator6, + this.deleteToolStripMenuItem2, + this.renameToolStripMenuItem2}); + this.editToolStripMenuItem.Name = "editToolStripMenuItem"; + this.editToolStripMenuItem.Size = new System.Drawing.Size(44, 21); + this.editToolStripMenuItem.Text = "编辑"; + this.editToolStripMenuItem.DropDownOpening += new System.EventHandler(this.editToolStripMenuItem_DropDownOpening); + // + // modifyToolStripMenuItem1 + // + this.modifyToolStripMenuItem1.Enabled = false; + this.modifyToolStripMenuItem1.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.modifyToolStripMenuItem1.Name = "modifyToolStripMenuItem1"; + this.modifyToolStripMenuItem1.Size = new System.Drawing.Size(180, 22); + this.modifyToolStripMenuItem1.Text = "修改..."; + this.modifyToolStripMenuItem1.Visible = false; + this.modifyToolStripMenuItem1.Click += new System.EventHandler(this.modifyRegistryValue_Click); + // + // modifyBinaryDataToolStripMenuItem1 + // + this.modifyBinaryDataToolStripMenuItem1.Enabled = false; + this.modifyBinaryDataToolStripMenuItem1.Name = "modifyBinaryDataToolStripMenuItem1"; + this.modifyBinaryDataToolStripMenuItem1.Size = new System.Drawing.Size(180, 22); + this.modifyBinaryDataToolStripMenuItem1.Text = "修改二进制数据..."; + this.modifyBinaryDataToolStripMenuItem1.Visible = false; + this.modifyBinaryDataToolStripMenuItem1.Click += new System.EventHandler(this.modifyBinaryDataRegistryValue_Click); + // + // modifyNewtoolStripSeparator + // + this.modifyNewtoolStripSeparator.Name = "modifyNewtoolStripSeparator"; + this.modifyNewtoolStripSeparator.Size = new System.Drawing.Size(177, 6); + this.modifyNewtoolStripSeparator.Visible = false; + // + // newToolStripMenuItem2 + // + this.newToolStripMenuItem2.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.keyToolStripMenuItem2, + this.toolStripSeparator7, + this.stringValueToolStripMenuItem2, + this.binaryValueToolStripMenuItem2, + this.dWORD32bitValueToolStripMenuItem2, + this.qWORD64bitValueToolStripMenuItem2, + this.multiStringValueToolStripMenuItem2, + this.expandableStringValueToolStripMenuItem2}); + this.newToolStripMenuItem2.Name = "newToolStripMenuItem2"; + this.newToolStripMenuItem2.Size = new System.Drawing.Size(180, 22); + this.newToolStripMenuItem2.Text = "新建"; + // + // keyToolStripMenuItem2 + // + this.keyToolStripMenuItem2.Name = "keyToolStripMenuItem2"; + this.keyToolStripMenuItem2.Size = new System.Drawing.Size(183, 22); + this.keyToolStripMenuItem2.Text = "项"; + this.keyToolStripMenuItem2.Click += new System.EventHandler(this.createNewRegistryKey_Click); + // + // toolStripSeparator7 + // + this.toolStripSeparator7.Name = "toolStripSeparator7"; + this.toolStripSeparator7.Size = new System.Drawing.Size(180, 6); + // + // stringValueToolStripMenuItem2 + // + this.stringValueToolStripMenuItem2.Name = "stringValueToolStripMenuItem2"; + this.stringValueToolStripMenuItem2.Size = new System.Drawing.Size(183, 22); + this.stringValueToolStripMenuItem2.Text = "字符串值"; + this.stringValueToolStripMenuItem2.Click += new System.EventHandler(this.createStringRegistryValue_Click); + // + // binaryValueToolStripMenuItem2 + // + this.binaryValueToolStripMenuItem2.Name = "binaryValueToolStripMenuItem2"; + this.binaryValueToolStripMenuItem2.Size = new System.Drawing.Size(183, 22); + this.binaryValueToolStripMenuItem2.Text = "二进制值"; + this.binaryValueToolStripMenuItem2.Click += new System.EventHandler(this.createBinaryRegistryValue_Click); + // + // dWORD32bitValueToolStripMenuItem2 + // + this.dWORD32bitValueToolStripMenuItem2.Name = "dWORD32bitValueToolStripMenuItem2"; + this.dWORD32bitValueToolStripMenuItem2.Size = new System.Drawing.Size(183, 22); + this.dWORD32bitValueToolStripMenuItem2.Text = "DWORD (32 位) 值"; + this.dWORD32bitValueToolStripMenuItem2.Click += new System.EventHandler(this.createDwordRegistryValue_Click); + // + // qWORD64bitValueToolStripMenuItem2 + // + this.qWORD64bitValueToolStripMenuItem2.Name = "qWORD64bitValueToolStripMenuItem2"; + this.qWORD64bitValueToolStripMenuItem2.Size = new System.Drawing.Size(183, 22); + this.qWORD64bitValueToolStripMenuItem2.Text = "QWORD (64 位) 值"; + this.qWORD64bitValueToolStripMenuItem2.Click += new System.EventHandler(this.createQwordRegistryValue_Click); + // + // multiStringValueToolStripMenuItem2 + // + this.multiStringValueToolStripMenuItem2.Name = "multiStringValueToolStripMenuItem2"; + this.multiStringValueToolStripMenuItem2.Size = new System.Drawing.Size(183, 22); + this.multiStringValueToolStripMenuItem2.Text = "多字符串值"; + this.multiStringValueToolStripMenuItem2.Click += new System.EventHandler(this.createMultiStringRegistryValue_Click); + // + // expandableStringValueToolStripMenuItem2 + // + this.expandableStringValueToolStripMenuItem2.Name = "expandableStringValueToolStripMenuItem2"; + this.expandableStringValueToolStripMenuItem2.Size = new System.Drawing.Size(183, 22); + this.expandableStringValueToolStripMenuItem2.Text = "可扩充字符串值"; + this.expandableStringValueToolStripMenuItem2.Click += new System.EventHandler(this.createExpandStringRegistryValue_Click); + // + // toolStripSeparator6 + // + this.toolStripSeparator6.Name = "toolStripSeparator6"; + this.toolStripSeparator6.Size = new System.Drawing.Size(177, 6); + // + // deleteToolStripMenuItem2 + // + this.deleteToolStripMenuItem2.Enabled = false; + this.deleteToolStripMenuItem2.Name = "deleteToolStripMenuItem2"; + this.deleteToolStripMenuItem2.ShortcutKeyDisplayString = "Del"; + this.deleteToolStripMenuItem2.Size = new System.Drawing.Size(180, 22); + this.deleteToolStripMenuItem2.Text = "删除"; + this.deleteToolStripMenuItem2.Click += new System.EventHandler(this.menuStripDelete_Click); + // + // renameToolStripMenuItem2 + // + this.renameToolStripMenuItem2.Enabled = false; + this.renameToolStripMenuItem2.Name = "renameToolStripMenuItem2"; + this.renameToolStripMenuItem2.Size = new System.Drawing.Size(180, 22); + this.renameToolStripMenuItem2.Text = "重命名"; + this.renameToolStripMenuItem2.Click += new System.EventHandler(this.menuStripRename_Click); + // + // tv_ContextMenuStrip + // + this.tv_ContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.newToolStripMenuItem, + this.toolStripSeparator1, + this.deleteToolStripMenuItem, + this.renameToolStripMenuItem}); + this.tv_ContextMenuStrip.Name = "contextMenuStrip"; + this.tv_ContextMenuStrip.Size = new System.Drawing.Size(113, 76); + // + // newToolStripMenuItem + // + this.newToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.keyToolStripMenuItem, + this.toolStripSeparator2, + this.stringValueToolStripMenuItem, + this.binaryValueToolStripMenuItem, + this.dWORD32bitValueToolStripMenuItem, + this.qWORD64bitValueToolStripMenuItem, + this.multiStringValueToolStripMenuItem, + this.expandableStringValueToolStripMenuItem}); + this.newToolStripMenuItem.Name = "newToolStripMenuItem"; + this.newToolStripMenuItem.Size = new System.Drawing.Size(112, 22); + this.newToolStripMenuItem.Text = "新建"; + // + // keyToolStripMenuItem + // + this.keyToolStripMenuItem.Name = "keyToolStripMenuItem"; + this.keyToolStripMenuItem.Size = new System.Drawing.Size(183, 22); + this.keyToolStripMenuItem.Text = "项"; + this.keyToolStripMenuItem.Click += new System.EventHandler(this.createNewRegistryKey_Click); + // + // toolStripSeparator2 + // + this.toolStripSeparator2.Name = "toolStripSeparator2"; + this.toolStripSeparator2.Size = new System.Drawing.Size(215, 6); + // + // stringValueToolStripMenuItem + // + this.stringValueToolStripMenuItem.Name = "stringValueToolStripMenuItem"; + this.stringValueToolStripMenuItem.Size = new System.Drawing.Size(183, 22); + this.stringValueToolStripMenuItem.Text = "字符串值"; + this.stringValueToolStripMenuItem.Click += new System.EventHandler(this.createStringRegistryValue_Click); + // + // binaryValueToolStripMenuItem + // + this.binaryValueToolStripMenuItem.Name = "binaryValueToolStripMenuItem"; + this.binaryValueToolStripMenuItem.Size = new System.Drawing.Size(183, 22); + this.binaryValueToolStripMenuItem.Text = "二进制值"; + this.binaryValueToolStripMenuItem.Click += new System.EventHandler(this.createBinaryRegistryValue_Click); + // + // dWORD32bitValueToolStripMenuItem + // + this.dWORD32bitValueToolStripMenuItem.Name = "dWORD32bitValueToolStripMenuItem"; + this.dWORD32bitValueToolStripMenuItem.Size = new System.Drawing.Size(183, 22); + this.dWORD32bitValueToolStripMenuItem.Text = "DWORD (32 位) 值"; + this.dWORD32bitValueToolStripMenuItem.Click += new System.EventHandler(this.createDwordRegistryValue_Click); + // + // qWORD64bitValueToolStripMenuItem + // + this.qWORD64bitValueToolStripMenuItem.Name = "qWORD64bitValueToolStripMenuItem"; + this.qWORD64bitValueToolStripMenuItem.Size = new System.Drawing.Size(183, 22); + this.qWORD64bitValueToolStripMenuItem.Text = "QWORD (64 位) 值"; + this.qWORD64bitValueToolStripMenuItem.Click += new System.EventHandler(this.createQwordRegistryValue_Click); + // + // multiStringValueToolStripMenuItem + // + this.multiStringValueToolStripMenuItem.Name = "multiStringValueToolStripMenuItem"; + this.multiStringValueToolStripMenuItem.Size = new System.Drawing.Size(183, 22); + this.multiStringValueToolStripMenuItem.Text = "多字符串值"; + this.multiStringValueToolStripMenuItem.Click += new System.EventHandler(this.createMultiStringRegistryValue_Click); + // + // expandableStringValueToolStripMenuItem + // + this.expandableStringValueToolStripMenuItem.Name = "expandableStringValueToolStripMenuItem"; + this.expandableStringValueToolStripMenuItem.Size = new System.Drawing.Size(183, 22); + this.expandableStringValueToolStripMenuItem.Text = "可扩充字符串值"; + this.expandableStringValueToolStripMenuItem.Click += new System.EventHandler(this.createExpandStringRegistryValue_Click); + // + // toolStripSeparator1 + // + this.toolStripSeparator1.Name = "toolStripSeparator1"; + this.toolStripSeparator1.Size = new System.Drawing.Size(120, 6); + // + // deleteToolStripMenuItem + // + this.deleteToolStripMenuItem.Enabled = false; + this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem"; + this.deleteToolStripMenuItem.Size = new System.Drawing.Size(112, 22); + this.deleteToolStripMenuItem.Text = "删除"; + this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteRegistryKey_Click); + // + // renameToolStripMenuItem + // + this.renameToolStripMenuItem.Enabled = false; + this.renameToolStripMenuItem.Name = "renameToolStripMenuItem"; + this.renameToolStripMenuItem.Size = new System.Drawing.Size(112, 22); + this.renameToolStripMenuItem.Text = "重命名"; + this.renameToolStripMenuItem.Click += new System.EventHandler(this.renameRegistryKey_Click); + // + // selectedItem_ContextMenuStrip + // + this.selectedItem_ContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.modifyToolStripMenuItem, + this.modifyBinaryDataToolStripMenuItem, + this.modifyToolStripSeparator1, + this.deleteToolStripMenuItem1, + this.renameToolStripMenuItem1}); + this.selectedItem_ContextMenuStrip.Name = "selectedItem_ContextMenuStrip"; + this.selectedItem_ContextMenuStrip.Size = new System.Drawing.Size(170, 98); + // + // modifyToolStripMenuItem + // + this.modifyToolStripMenuItem.Enabled = false; + this.modifyToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.modifyToolStripMenuItem.Name = "modifyToolStripMenuItem"; + this.modifyToolStripMenuItem.Size = new System.Drawing.Size(169, 22); + this.modifyToolStripMenuItem.Text = "修改..."; + this.modifyToolStripMenuItem.Click += new System.EventHandler(this.modifyRegistryValue_Click); + // + // modifyBinaryDataToolStripMenuItem + // + this.modifyBinaryDataToolStripMenuItem.Enabled = false; + this.modifyBinaryDataToolStripMenuItem.Name = "modifyBinaryDataToolStripMenuItem"; + this.modifyBinaryDataToolStripMenuItem.Size = new System.Drawing.Size(169, 22); + this.modifyBinaryDataToolStripMenuItem.Text = "修改二进制数据..."; + this.modifyBinaryDataToolStripMenuItem.Click += new System.EventHandler(this.modifyBinaryDataRegistryValue_Click); + // + // modifyToolStripSeparator1 + // + this.modifyToolStripSeparator1.Name = "modifyToolStripSeparator1"; + this.modifyToolStripSeparator1.Size = new System.Drawing.Size(194, 6); + // + // deleteToolStripMenuItem1 + // + this.deleteToolStripMenuItem1.Name = "deleteToolStripMenuItem1"; + this.deleteToolStripMenuItem1.Size = new System.Drawing.Size(169, 22); + this.deleteToolStripMenuItem1.Text = "删除"; + this.deleteToolStripMenuItem1.Click += new System.EventHandler(this.deleteRegistryValue_Click); + // + // renameToolStripMenuItem1 + // + this.renameToolStripMenuItem1.Name = "renameToolStripMenuItem1"; + this.renameToolStripMenuItem1.Size = new System.Drawing.Size(169, 22); + this.renameToolStripMenuItem1.Text = "重命名"; + this.renameToolStripMenuItem1.Click += new System.EventHandler(this.renameRegistryValue_Click); + // + // lst_ContextMenuStrip + // + this.lst_ContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.newToolStripMenuItem1}); + this.lst_ContextMenuStrip.Name = "lst_ContextMenuStrip"; + this.lst_ContextMenuStrip.Size = new System.Drawing.Size(101, 26); + // + // newToolStripMenuItem1 + // + this.newToolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.keyToolStripMenuItem1, + this.toolStripSeparator4, + this.stringValueToolStripMenuItem1, + this.binaryValueToolStripMenuItem1, + this.dWORD32bitValueToolStripMenuItem1, + this.qWORD64bitValueToolStripMenuItem1, + this.multiStringValueToolStripMenuItem1, + this.expandableStringValueToolStripMenuItem1}); + this.newToolStripMenuItem1.Name = "newToolStripMenuItem1"; + this.newToolStripMenuItem1.Size = new System.Drawing.Size(100, 22); + this.newToolStripMenuItem1.Text = "新建"; + // + // keyToolStripMenuItem1 + // + this.keyToolStripMenuItem1.Name = "keyToolStripMenuItem1"; + this.keyToolStripMenuItem1.Size = new System.Drawing.Size(183, 22); + this.keyToolStripMenuItem1.Text = "项"; + this.keyToolStripMenuItem1.Click += new System.EventHandler(this.createNewRegistryKey_Click); + // + // toolStripSeparator4 + // + this.toolStripSeparator4.Name = "toolStripSeparator4"; + this.toolStripSeparator4.Size = new System.Drawing.Size(215, 6); + // + // stringValueToolStripMenuItem1 + // + this.stringValueToolStripMenuItem1.Name = "stringValueToolStripMenuItem1"; + this.stringValueToolStripMenuItem1.Size = new System.Drawing.Size(183, 22); + this.stringValueToolStripMenuItem1.Text = "字符串值"; + this.stringValueToolStripMenuItem1.Click += new System.EventHandler(this.createStringRegistryValue_Click); + // + // binaryValueToolStripMenuItem1 + // + this.binaryValueToolStripMenuItem1.Name = "binaryValueToolStripMenuItem1"; + this.binaryValueToolStripMenuItem1.Size = new System.Drawing.Size(183, 22); + this.binaryValueToolStripMenuItem1.Text = "二进制值"; + this.binaryValueToolStripMenuItem1.Click += new System.EventHandler(this.createBinaryRegistryValue_Click); + // + // dWORD32bitValueToolStripMenuItem1 + // + this.dWORD32bitValueToolStripMenuItem1.Name = "dWORD32bitValueToolStripMenuItem1"; + this.dWORD32bitValueToolStripMenuItem1.Size = new System.Drawing.Size(183, 22); + this.dWORD32bitValueToolStripMenuItem1.Text = "DWORD (32 位) 值"; + this.dWORD32bitValueToolStripMenuItem1.Click += new System.EventHandler(this.createDwordRegistryValue_Click); + // + // qWORD64bitValueToolStripMenuItem1 + // + this.qWORD64bitValueToolStripMenuItem1.Name = "qWORD64bitValueToolStripMenuItem1"; + this.qWORD64bitValueToolStripMenuItem1.Size = new System.Drawing.Size(183, 22); + this.qWORD64bitValueToolStripMenuItem1.Text = "QWORD (64 位) 值"; + this.qWORD64bitValueToolStripMenuItem1.Click += new System.EventHandler(this.createQwordRegistryValue_Click); + // + // multiStringValueToolStripMenuItem1 + // + this.multiStringValueToolStripMenuItem1.Name = "multiStringValueToolStripMenuItem1"; + this.multiStringValueToolStripMenuItem1.Size = new System.Drawing.Size(183, 22); + this.multiStringValueToolStripMenuItem1.Text = "多字符串值"; + this.multiStringValueToolStripMenuItem1.Click += new System.EventHandler(this.createMultiStringRegistryValue_Click); + // + // expandableStringValueToolStripMenuItem1 + // + this.expandableStringValueToolStripMenuItem1.Name = "expandableStringValueToolStripMenuItem1"; + this.expandableStringValueToolStripMenuItem1.Size = new System.Drawing.Size(183, 22); + this.expandableStringValueToolStripMenuItem1.Text = "可扩充字符串值"; + this.expandableStringValueToolStripMenuItem1.Click += new System.EventHandler(this.createExpandStringRegistryValue_Click); + // + // RegEditorApplication + // + this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; + this.ClientSize = new System.Drawing.Size(935, 648); + this.Controls.Add(this.tableLayoutPanel); + this.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ForeColor = System.Drawing.Color.Black; + this.MainMenuStrip = this.menuStrip; + this.Name = "RegEditorApplication"; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; + this.Text = "Registry Editor []"; + this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmRegistryEditor_FormClosing); + this.Load += new System.EventHandler(this.FrmRegistryEditor_Load); + this.tableLayoutPanel.ResumeLayout(false); + this.tableLayoutPanel.PerformLayout(); + this.splitContainer.Panel1.ResumeLayout(false); + this.splitContainer.Panel2.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit(); + this.splitContainer.ResumeLayout(false); + this.statusStrip.ResumeLayout(false); + this.statusStrip.PerformLayout(); + this.menuStrip.ResumeLayout(false); + this.menuStrip.PerformLayout(); + this.tv_ContextMenuStrip.ResumeLayout(false); + this.selectedItem_ContextMenuStrip.ResumeLayout(false); + this.lst_ContextMenuStrip.ResumeLayout(false); + this.ResumeLayout(false); + } #endregion diff --git a/SiMay.RemoteMonitor/Application/RegEditorApplication.resx b/SiMay.RemoteMonitor/Application/RegEditorApplication.resx index ec2f395f9858584d7cbe4be830293b7ff0ff31cb..b0c28fde39d4a90c001487a590d6c591351927a9 100644 --- a/SiMay.RemoteMonitor/Application/RegEditorApplication.resx +++ b/SiMay.RemoteMonitor/Application/RegEditorApplication.resx @@ -1,231 +1,230 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - 126, 17 - - - - AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w - LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 - ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAADm - BwAAAk1TRnQBSQFMAwEBAAFQAQUBVAEFARABAAEQAQAE/wEJARAI/wFCAU0BNgEEBgABNgEEAgABKAMA - AUADAAEQAwABAQEAAQgGAAEEGAABgAIAAYADAAKAAQABgAMAAYABAAGAAQACgAIAA8ABAAHAAdwBwAEA - AfABygGmAQABMwUAATMBAAEzAQABMwEAAjMCAAMWAQADHAEAAyIBAAMpAQADVQEAA00BAANCAQADOQEA - AYABfAH/AQACUAH/AQABkwEAAdYBAAH/AewBzAEAAcYB1gHvAQAB1gLnAQABkAGpAa0CAAH/ATMDAAFm - AwABmQMAAcwCAAEzAwACMwIAATMBZgIAATMBmQIAATMBzAIAATMB/wIAAWYDAAFmATMCAAJmAgABZgGZ - AgABZgHMAgABZgH/AgABmQMAAZkBMwIAAZkBZgIAApkCAAGZAcwCAAGZAf8CAAHMAwABzAEzAgABzAFm - AgABzAGZAgACzAIAAcwB/wIAAf8BZgIAAf8BmQIAAf8BzAEAATMB/wIAAf8BAAEzAQABMwEAAWYBAAEz - AQABmQEAATMBAAHMAQABMwEAAf8BAAH/ATMCAAMzAQACMwFmAQACMwGZAQACMwHMAQACMwH/AQABMwFm - AgABMwFmATMBAAEzAmYBAAEzAWYBmQEAATMBZgHMAQABMwFmAf8BAAEzAZkCAAEzAZkBMwEAATMBmQFm - AQABMwKZAQABMwGZAcwBAAEzAZkB/wEAATMBzAIAATMBzAEzAQABMwHMAWYBAAEzAcwBmQEAATMCzAEA - ATMBzAH/AQABMwH/ATMBAAEzAf8BZgEAATMB/wGZAQABMwH/AcwBAAEzAv8BAAFmAwABZgEAATMBAAFm - AQABZgEAAWYBAAGZAQABZgEAAcwBAAFmAQAB/wEAAWYBMwIAAWYCMwEAAWYBMwFmAQABZgEzAZkBAAFm - ATMBzAEAAWYBMwH/AQACZgIAAmYBMwEAA2YBAAJmAZkBAAJmAcwBAAFmAZkCAAFmAZkBMwEAAWYBmQFm - AQABZgKZAQABZgGZAcwBAAFmAZkB/wEAAWYBzAIAAWYBzAEzAQABZgHMAZkBAAFmAswBAAFmAcwB/wEA - AWYB/wIAAWYB/wEzAQABZgH/AZkBAAFmAf8BzAEAAcwBAAH/AQAB/wEAAcwBAAKZAgABmQEzAZkBAAGZ - AQABmQEAAZkBAAHMAQABmQMAAZkCMwEAAZkBAAFmAQABmQEzAcwBAAGZAQAB/wEAAZkBZgIAAZkBZgEz - AQABmQEzAWYBAAGZAWYBmQEAAZkBZgHMAQABmQEzAf8BAAKZATMBAAKZAWYBAAOZAQACmQHMAQACmQH/ - AQABmQHMAgABmQHMATMBAAFmAcwBZgEAAZkBzAGZAQABmQLMAQABmQHMAf8BAAGZAf8CAAGZAf8BMwEA - AZkBzAFmAQABmQH/AZkBAAGZAf8BzAEAAZkC/wEAAcwDAAGZAQABMwEAAcwBAAFmAQABzAEAAZkBAAHM - AQABzAEAAZkBMwIAAcwCMwEAAcwBMwFmAQABzAEzAZkBAAHMATMBzAEAAcwBMwH/AQABzAFmAgABzAFm - ATMBAAGZAmYBAAHMAWYBmQEAAcwBZgHMAQABmQFmAf8BAAHMAZkCAAHMAZkBMwEAAcwBmQFmAQABzAKZ - AQABzAGZAcwBAAHMAZkB/wEAAswCAALMATMBAALMAWYBAALMAZkBAAPMAQACzAH/AQABzAH/AgABzAH/ - ATMBAAGZAf8BZgEAAcwB/wGZAQABzAH/AcwBAAHMAv8BAAHMAQABMwEAAf8BAAFmAQAB/wEAAZkBAAHM - ATMCAAH/AjMBAAH/ATMBZgEAAf8BMwGZAQAB/wEzAcwBAAH/ATMB/wEAAf8BZgIAAf8BZgEzAQABzAJm - AQAB/wFmAZkBAAH/AWYBzAEAAcwBZgH/AQAB/wGZAgAB/wGZATMBAAH/AZkBZgEAAf8CmQEAAf8BmQHM - AQAB/wGZAf8BAAH/AcwCAAH/AcwBMwEAAf8BzAFmAQAB/wHMAZkBAAH/AswBAAH/AcwB/wEAAv8BMwEA - AcwB/wFmAQAC/wGZAQAC/wHMAQACZgH/AQABZgH/AWYBAAFmAv8BAAH/AmYBAAH/AWYB/wEAAv8BZgEA - ASEBAAGlAQADXwEAA3cBAAOGAQADlgEAA8sBAAOyAQAD1wEAA90BAAPjAQAD6gEAA/EBAAP4AQAB8AH7 - Af8BAAGkAqABAAOAAwAB/wIAAf8DAAL/AQAB/wMAAf8BAAH/AQAC/wIAA/+CAAEaAZkLUgEaMgABdAEb - ARoEmgV6AcMBUjIAAVIB9gGgApoDegRZAcMBUjIAAVIB9gHDAaACmgN6A1kBwwFSMgABUgH2AsMCoAGa - A3oCWQHDAVIyAAFSAv8D9gHDApoDegHDAVIyAAFSAfYCmgF6ARsG9gH/AVgyAAFYAfYDmgJ6ApoDegH2 - AVgyAAFYAfYDmgEaBvYB/wF5MgABWAX/AfYEeQKZARsyAAd5B//xAAFCAU0BPgcAAT4DAAEoAwABQAMA - ARADAAEBAQABAQUAAYAXAAP/AQAC/wYAAv8GAAGAAQEGAAGAAQEGAAGAAQEGAAGAAQEGAAGAAQEGAAGA - AQEGAAGAAQEGAAGAAQEGAAGAAQEGAAGAAQEGAAGAAQEGAAL/BgAC/wYAAv8cAAs= - - - - 323, 17 - - - - AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w - LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 - ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAABk - CQAAAk1TRnQBSQFMAgEBAgEAAXABBAF0AQQBEAEAARABAAT/AQkBEAj/AUIBTQE2AQQGAAE2AQQCAAEo - AwABQAMAARADAAEBAQABCAYAAQQYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA - AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5 - AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA - AWYDAAGZAwABzAIAATMDAAIzAgABMwFmAgABMwGZAgABMwHMAgABMwH/AgABZgMAAWYBMwIAAmYCAAFm - AZkCAAFmAcwCAAFmAf8CAAGZAwABmQEzAgABmQFmAgACmQIAAZkBzAIAAZkB/wIAAcwDAAHMATMCAAHM - AWYCAAHMAZkCAALMAgABzAH/AgAB/wFmAgAB/wGZAgAB/wHMAQABMwH/AgAB/wEAATMBAAEzAQABZgEA - ATMBAAGZAQABMwEAAcwBAAEzAQAB/wEAAf8BMwIAAzMBAAIzAWYBAAIzAZkBAAIzAcwBAAIzAf8BAAEz - AWYCAAEzAWYBMwEAATMCZgEAATMBZgGZAQABMwFmAcwBAAEzAWYB/wEAATMBmQIAATMBmQEzAQABMwGZ - AWYBAAEzApkBAAEzAZkBzAEAATMBmQH/AQABMwHMAgABMwHMATMBAAEzAcwBZgEAATMBzAGZAQABMwLM - AQABMwHMAf8BAAEzAf8BMwEAATMB/wFmAQABMwH/AZkBAAEzAf8BzAEAATMC/wEAAWYDAAFmAQABMwEA - AWYBAAFmAQABZgEAAZkBAAFmAQABzAEAAWYBAAH/AQABZgEzAgABZgIzAQABZgEzAWYBAAFmATMBmQEA - AWYBMwHMAQABZgEzAf8BAAJmAgACZgEzAQADZgEAAmYBmQEAAmYBzAEAAWYBmQIAAWYBmQEzAQABZgGZ - AWYBAAFmApkBAAFmAZkBzAEAAWYBmQH/AQABZgHMAgABZgHMATMBAAFmAcwBmQEAAWYCzAEAAWYBzAH/ - AQABZgH/AgABZgH/ATMBAAFmAf8BmQEAAWYB/wHMAQABzAEAAf8BAAH/AQABzAEAApkCAAGZATMBmQEA - AZkBAAGZAQABmQEAAcwBAAGZAwABmQIzAQABmQEAAWYBAAGZATMBzAEAAZkBAAH/AQABmQFmAgABmQFm - ATMBAAGZATMBZgEAAZkBZgGZAQABmQFmAcwBAAGZATMB/wEAApkBMwEAApkBZgEAA5kBAAKZAcwBAAKZ - Af8BAAGZAcwCAAGZAcwBMwEAAWYBzAFmAQABmQHMAZkBAAGZAswBAAGZAcwB/wEAAZkB/wIAAZkB/wEz - AQABmQHMAWYBAAGZAf8BmQEAAZkB/wHMAQABmQL/AQABzAMAAZkBAAEzAQABzAEAAWYBAAHMAQABmQEA - AcwBAAHMAQABmQEzAgABzAIzAQABzAEzAWYBAAHMATMBmQEAAcwBMwHMAQABzAEzAf8BAAHMAWYCAAHM - AWYBMwEAAZkCZgEAAcwBZgGZAQABzAFmAcwBAAGZAWYB/wEAAcwBmQIAAcwBmQEzAQABzAGZAWYBAAHM - ApkBAAHMAZkBzAEAAcwBmQH/AQACzAIAAswBMwEAAswBZgEAAswBmQEAA8wBAALMAf8BAAHMAf8CAAHM - Af8BMwEAAZkB/wFmAQABzAH/AZkBAAHMAf8BzAEAAcwC/wEAAcwBAAEzAQAB/wEAAWYBAAH/AQABmQEA - AcwBMwIAAf8CMwEAAf8BMwFmAQAB/wEzAZkBAAH/ATMBzAEAAf8BMwH/AQAB/wFmAgAB/wFmATMBAAHM - AmYBAAH/AWYBmQEAAf8BZgHMAQABzAFmAf8BAAH/AZkCAAH/AZkBMwEAAf8BmQFmAQAB/wKZAQAB/wGZ - AcwBAAH/AZkB/wEAAf8BzAIAAf8BzAEzAQAB/wHMAWYBAAH/AcwBmQEAAf8CzAEAAf8BzAH/AQAC/wEz - AQABzAH/AWYBAAL/AZkBAAL/AcwBAAJmAf8BAAFmAf8BZgEAAWYC/wEAAf8CZgEAAf8BZgH/AQAC/wFm - AQABIQEAAaUBAANfAQADdwEAA4YBAAOWAQADywEAA7IBAAPXAQAD3QEAA+MBAAPqAQAD8QEAA/gBAAHw - AfsB/wEAAaQCoAEAA4ADAAH/AgAB/wMAAv8BAAH/AwAB/wEAAf8BAAL/AgAD/0EAA+8DAATvAwAG7wMA - BO8DAAPvIAAB7wL/A+8E/wPvAv8C7wL/A+8E/wPvAv8B7yAAAe8O/wLvDv8B7yAAAQcD/wH0Bf8B9AT/ - Ae8BBwL/AawC/wHVAf8CrAEZAf8BrAL/Ae8gAAHwAf8BvQL5AeMBRwH/AUcBFwL5AZQC/wHvAfAC/wGs - Av8B1QH/AdUB9AHZAf8BrAL/Ae8gAAHwAf8BFgHjAf8BlAFHAf8BRwGUAv8B+QL/Ae8B8AL/AawB/wH0 - AdUB/wGsARkB2QEZAawC/wHvIAAB8AH/Ab0B+QIWARcB/wFHAb0C/wEXAb0B/wHvAfAB/wHTAawB/wHT - AawB/wHVAawB/wHTAawC/wHvIAAB8AP/Ab0B4wEXAf8BRwG9Av8BRwHzAf8B7wHwDv8B7yAAAfAC/wEX - Ab0B4wEWAf8BRwH5Ab0BlAEXAv8B7wHwAv8BrAH/AqwBGQH/AdMB/wHTAawC/wHvIAAB8AH0Af8BvQKU - Av8BRwG9ApQD/wHvAfAB9AH/AawB/wGsAf8BrAH/AdMBGQHVARkB1QH/Ae8gAAHwAfQG/wFHAb0B/wXv - AfAB9AH/AawB/wGsAf8B1QEZAdMB9AXvIAAB8AL0Bf8BRwG9Af8B7wHxAfMB9AHvAfAB9AHTAawB/wHc - AawBGQHVAawB/wHvAfEB8wH0Ae8gAAHwAfMC9Af/Ae8B8wH0Ae8BAAHwAfMC9Af/Ae8B8wH0Ae8hAAHw - AfEB8wP0Bf8B7wH0Ae8CAAHwAfEB8wP0Bf8B7wH0Ae8iAAXwBQcD7wMABfAFBwPvIwABQgFNAT4HAAE+ - AwABKAMAAUADAAEQAwABAQEAAQEFAAGAFwAD/wEABP8EAAEcATgBHAE4XQABAQEAAQEFAAEDAQABAwUA - AQcBAAEHGgAL - - - - 17, 17 - - - 1075, 17 - - - 516, 17 - - - 682, 17 - - - 907, 17 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 126, 17 + + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAADm + BwAAAk1TRnQBSQFMAwEBAAFcAQUBXAEFARABAAEQAQAE/wEJAQAI/wFCAU0BNgEEBgABNgEEAgABKAMA + AUADAAEQAwABAQEAAQgGAAEEGAABgAIAAYADAAKAAQABgAMAAYABAAGAAQACgAIAA8ABAAHAAdwBwAEA + AfABygGmAQABMwUAATMBAAEzAQABMwEAAjMCAAMWAQADHAEAAyIBAAMpAQADVQEAA00BAANCAQADOQEA + AYABfAH/AQACUAH/AQABkwEAAdYBAAH/AewBzAEAAcYB1gHvAQAB1gLnAQABkAGpAa0CAAH/ATMDAAFm + AwABmQMAAcwCAAEzAwACMwIAATMBZgIAATMBmQIAATMBzAIAATMB/wIAAWYDAAFmATMCAAJmAgABZgGZ + AgABZgHMAgABZgH/AgABmQMAAZkBMwIAAZkBZgIAApkCAAGZAcwCAAGZAf8CAAHMAwABzAEzAgABzAFm + AgABzAGZAgACzAIAAcwB/wIAAf8BZgIAAf8BmQIAAf8BzAEAATMB/wIAAf8BAAEzAQABMwEAAWYBAAEz + AQABmQEAATMBAAHMAQABMwEAAf8BAAH/ATMCAAMzAQACMwFmAQACMwGZAQACMwHMAQACMwH/AQABMwFm + AgABMwFmATMBAAEzAmYBAAEzAWYBmQEAATMBZgHMAQABMwFmAf8BAAEzAZkCAAEzAZkBMwEAATMBmQFm + AQABMwKZAQABMwGZAcwBAAEzAZkB/wEAATMBzAIAATMBzAEzAQABMwHMAWYBAAEzAcwBmQEAATMCzAEA + ATMBzAH/AQABMwH/ATMBAAEzAf8BZgEAATMB/wGZAQABMwH/AcwBAAEzAv8BAAFmAwABZgEAATMBAAFm + AQABZgEAAWYBAAGZAQABZgEAAcwBAAFmAQAB/wEAAWYBMwIAAWYCMwEAAWYBMwFmAQABZgEzAZkBAAFm + ATMBzAEAAWYBMwH/AQACZgIAAmYBMwEAA2YBAAJmAZkBAAJmAcwBAAFmAZkCAAFmAZkBMwEAAWYBmQFm + AQABZgKZAQABZgGZAcwBAAFmAZkB/wEAAWYBzAIAAWYBzAEzAQABZgHMAZkBAAFmAswBAAFmAcwB/wEA + AWYB/wIAAWYB/wEzAQABZgH/AZkBAAFmAf8BzAEAAcwBAAH/AQAB/wEAAcwBAAKZAgABmQEzAZkBAAGZ + AQABmQEAAZkBAAHMAQABmQMAAZkCMwEAAZkBAAFmAQABmQEzAcwBAAGZAQAB/wEAAZkBZgIAAZkBZgEz + AQABmQEzAWYBAAGZAWYBmQEAAZkBZgHMAQABmQEzAf8BAAKZATMBAAKZAWYBAAOZAQACmQHMAQACmQH/ + AQABmQHMAgABmQHMATMBAAFmAcwBZgEAAZkBzAGZAQABmQLMAQABmQHMAf8BAAGZAf8CAAGZAf8BMwEA + AZkBzAFmAQABmQH/AZkBAAGZAf8BzAEAAZkC/wEAAcwDAAGZAQABMwEAAcwBAAFmAQABzAEAAZkBAAHM + AQABzAEAAZkBMwIAAcwCMwEAAcwBMwFmAQABzAEzAZkBAAHMATMBzAEAAcwBMwH/AQABzAFmAgABzAFm + ATMBAAGZAmYBAAHMAWYBmQEAAcwBZgHMAQABmQFmAf8BAAHMAZkCAAHMAZkBMwEAAcwBmQFmAQABzAKZ + AQABzAGZAcwBAAHMAZkB/wEAAswCAALMATMBAALMAWYBAALMAZkBAAPMAQACzAH/AQABzAH/AgABzAH/ + ATMBAAGZAf8BZgEAAcwB/wGZAQABzAH/AcwBAAHMAv8BAAHMAQABMwEAAf8BAAFmAQAB/wEAAZkBAAHM + ATMCAAH/AjMBAAH/ATMBZgEAAf8BMwGZAQAB/wEzAcwBAAH/ATMB/wEAAf8BZgIAAf8BZgEzAQABzAJm + AQAB/wFmAZkBAAH/AWYBzAEAAcwBZgH/AQAB/wGZAgAB/wGZATMBAAH/AZkBZgEAAf8CmQEAAf8BmQHM + AQAB/wGZAf8BAAH/AcwCAAH/AcwBMwEAAf8BzAFmAQAB/wHMAZkBAAH/AswBAAH/AcwB/wEAAv8BMwEA + AcwB/wFmAQAC/wGZAQAC/wHMAQACZgH/AQABZgH/AWYBAAFmAv8BAAH/AmYBAAH/AWYB/wEAAv8BZgEA + ASEBAAGlAQADXwEAA3cBAAOGAQADlgEAA8sBAAOyAQAD1wEAA90BAAPjAQAD6gEAA/EBAAP4AQAB8AH7 + Af8BAAGkAqABAAOAAwAB/wIAAf8DAAL/AQAB/wMAAf8BAAH/AQAC/wIAA/+CAAEaAZkLUgEaMgABdAEb + ARoEmgV6AcMBUjIAAVIB9gGgApoDegRZAcMBUjIAAVIB9gHDAaACmgN6A1kBwwFSMgABUgH2AsMCoAGa + A3oCWQHDAVIyAAFSAv8D9gHDApoDegHDAVIyAAFSAfYCmgF6ARsG9gH/AVgyAAFYAfYDmgJ6ApoDegH2 + AVgyAAFYAfYDmgEaBvYB/wF5MgABWAX/AfYEeQKZARsyAAd5B//xAAFCAU0BPgcAAT4DAAEoAwABQAMA + ARADAAEBAQABAQUAAYAXAAP/AQAC/wYAAv8GAAGAAQEGAAGAAQEGAAGAAQEGAAGAAQEGAAGAAQEGAAGA + AQEGAAGAAQEGAAGAAQEGAAGAAQEGAAGAAQEGAAGAAQEGAAL/BgAC/wYAAv8GAAs= + + + + 323, 17 + + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAABk + CQAAAk1TRnQBSQFMAgEBAgEAAXwBBAF8AQQBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo + AwABQAMAARADAAEBAQABCAYAAQQYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA + AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5 + AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA + AWYDAAGZAwABzAIAATMDAAIzAgABMwFmAgABMwGZAgABMwHMAgABMwH/AgABZgMAAWYBMwIAAmYCAAFm + AZkCAAFmAcwCAAFmAf8CAAGZAwABmQEzAgABmQFmAgACmQIAAZkBzAIAAZkB/wIAAcwDAAHMATMCAAHM + AWYCAAHMAZkCAALMAgABzAH/AgAB/wFmAgAB/wGZAgAB/wHMAQABMwH/AgAB/wEAATMBAAEzAQABZgEA + ATMBAAGZAQABMwEAAcwBAAEzAQAB/wEAAf8BMwIAAzMBAAIzAWYBAAIzAZkBAAIzAcwBAAIzAf8BAAEz + AWYCAAEzAWYBMwEAATMCZgEAATMBZgGZAQABMwFmAcwBAAEzAWYB/wEAATMBmQIAATMBmQEzAQABMwGZ + AWYBAAEzApkBAAEzAZkBzAEAATMBmQH/AQABMwHMAgABMwHMATMBAAEzAcwBZgEAATMBzAGZAQABMwLM + AQABMwHMAf8BAAEzAf8BMwEAATMB/wFmAQABMwH/AZkBAAEzAf8BzAEAATMC/wEAAWYDAAFmAQABMwEA + AWYBAAFmAQABZgEAAZkBAAFmAQABzAEAAWYBAAH/AQABZgEzAgABZgIzAQABZgEzAWYBAAFmATMBmQEA + AWYBMwHMAQABZgEzAf8BAAJmAgACZgEzAQADZgEAAmYBmQEAAmYBzAEAAWYBmQIAAWYBmQEzAQABZgGZ + AWYBAAFmApkBAAFmAZkBzAEAAWYBmQH/AQABZgHMAgABZgHMATMBAAFmAcwBmQEAAWYCzAEAAWYBzAH/ + AQABZgH/AgABZgH/ATMBAAFmAf8BmQEAAWYB/wHMAQABzAEAAf8BAAH/AQABzAEAApkCAAGZATMBmQEA + AZkBAAGZAQABmQEAAcwBAAGZAwABmQIzAQABmQEAAWYBAAGZATMBzAEAAZkBAAH/AQABmQFmAgABmQFm + ATMBAAGZATMBZgEAAZkBZgGZAQABmQFmAcwBAAGZATMB/wEAApkBMwEAApkBZgEAA5kBAAKZAcwBAAKZ + Af8BAAGZAcwCAAGZAcwBMwEAAWYBzAFmAQABmQHMAZkBAAGZAswBAAGZAcwB/wEAAZkB/wIAAZkB/wEz + AQABmQHMAWYBAAGZAf8BmQEAAZkB/wHMAQABmQL/AQABzAMAAZkBAAEzAQABzAEAAWYBAAHMAQABmQEA + AcwBAAHMAQABmQEzAgABzAIzAQABzAEzAWYBAAHMATMBmQEAAcwBMwHMAQABzAEzAf8BAAHMAWYCAAHM + AWYBMwEAAZkCZgEAAcwBZgGZAQABzAFmAcwBAAGZAWYB/wEAAcwBmQIAAcwBmQEzAQABzAGZAWYBAAHM + ApkBAAHMAZkBzAEAAcwBmQH/AQACzAIAAswBMwEAAswBZgEAAswBmQEAA8wBAALMAf8BAAHMAf8CAAHM + Af8BMwEAAZkB/wFmAQABzAH/AZkBAAHMAf8BzAEAAcwC/wEAAcwBAAEzAQAB/wEAAWYBAAH/AQABmQEA + AcwBMwIAAf8CMwEAAf8BMwFmAQAB/wEzAZkBAAH/ATMBzAEAAf8BMwH/AQAB/wFmAgAB/wFmATMBAAHM + AmYBAAH/AWYBmQEAAf8BZgHMAQABzAFmAf8BAAH/AZkCAAH/AZkBMwEAAf8BmQFmAQAB/wKZAQAB/wGZ + AcwBAAH/AZkB/wEAAf8BzAIAAf8BzAEzAQAB/wHMAWYBAAH/AcwBmQEAAf8CzAEAAf8BzAH/AQAC/wEz + AQABzAH/AWYBAAL/AZkBAAL/AcwBAAJmAf8BAAFmAf8BZgEAAWYC/wEAAf8CZgEAAf8BZgH/AQAC/wFm + AQABIQEAAaUBAANfAQADdwEAA4YBAAOWAQADywEAA7IBAAPXAQAD3QEAA+MBAAPqAQAD8QEAA/gBAAHw + AfsB/wEAAaQCoAEAA4ADAAH/AgAB/wMAAv8BAAH/AwAB/wEAAf8BAAL/AgAD/0EAA+8DAATvAwAG7wMA + BO8DAAPvIAAB7wL/A+8E/wPvAv8C7wL/A+8E/wPvAv8B7yAAAe8O/wLvDv8B7yAAAQcD/wH0Bf8B9AT/ + Ae8BBwL/AawC/wHVAf8CrAEZAf8BrAL/Ae8gAAHwAf8BvQL5AeMBRwH/AUcBFwL5AZQC/wHvAfAC/wGs + Av8B1QH/AdUB9AHZAf8BrAL/Ae8gAAHwAf8BFgHjAf8BlAFHAf8BRwGUAv8B+QL/Ae8B8AL/AawB/wH0 + AdUB/wGsARkB2QEZAawC/wHvIAAB8AH/Ab0B+QIWARcB/wFHAb0C/wEXAb0B/wHvAfAB/wHTAawB/wHT + AawB/wHVAawB/wHTAawC/wHvIAAB8AP/Ab0B4wEXAf8BRwG9Av8BRwHzAf8B7wHwDv8B7yAAAfAC/wEX + Ab0B4wEWAf8BRwH5Ab0BlAEXAv8B7wHwAv8BrAH/AqwBGQH/AdMB/wHTAawC/wHvIAAB8AH0Af8BvQKU + Av8BRwG9ApQD/wHvAfAB9AH/AawB/wGsAf8BrAH/AdMBGQHVARkB1QH/Ae8gAAHwAfQG/wFHAb0B/wXv + AfAB9AH/AawB/wGsAf8B1QEZAdMB9AXvIAAB8AL0Bf8BRwG9Af8B7wHxAfMB9AHvAfAB9AHTAawB/wHc + AawBGQHVAawB/wHvAfEB8wH0Ae8gAAHwAfMC9Af/Ae8B8wH0Ae8BAAHwAfMC9Af/Ae8B8wH0Ae8hAAHw + AfEB8wP0Bf8B7wH0Ae8CAAHwAfEB8wP0Bf8B7wH0Ae8iAAXwBQcD7wMABfAFBwPvIwABQgFNAT4HAAE+ + AwABKAMAAUADAAEQAwABAQEAAQEFAAGAFwAD/wEABP8EAAEcATgBHAE4XQABAQEAAQEFAAEDAQABAwUA + AQcBAAEHBAAL + + + + 17, 17 + + + 1075, 17 + + + 516, 17 + + + 682, 17 + + + 907, 17 + \ No newline at end of file diff --git a/SiMay.RemoteMonitor/Application/RegValueEditBinaryForm.designer.cs b/SiMay.RemoteMonitor/Application/RegValueEditBinaryForm.designer.cs index e98c93d09bbbbd66f53eaec720e75c5555710eb9..71f18f566c2b8bad14d0648cff4f648197da38d0 100644 --- a/SiMay.RemoteMonitor/Application/RegValueEditBinaryForm.designer.cs +++ b/SiMay.RemoteMonitor/Application/RegValueEditBinaryForm.designer.cs @@ -30,105 +30,107 @@ namespace SiMay.RemoteMonitor.Application /// private void InitializeComponent() { - this.valueNameTxtBox = new System.Windows.Forms.TextBox(); - this.label1 = new System.Windows.Forms.Label(); - this.label2 = new System.Windows.Forms.Label(); - this.cancelButton = new System.Windows.Forms.Button(); - this.okButton = new System.Windows.Forms.Button(); - this.hexEditor = new HexEditor(); - this.SuspendLayout(); - // - // valueNameTxtBox - // - this.valueNameTxtBox.Anchor = System.Windows.Forms.AnchorStyles.Left; - this.valueNameTxtBox.Location = new System.Drawing.Point(12, 31); - this.valueNameTxtBox.Name = "valueNameTxtBox"; - this.valueNameTxtBox.ReadOnly = true; - this.valueNameTxtBox.Size = new System.Drawing.Size(341, 20); - this.valueNameTxtBox.TabIndex = 3; - // - // label1 - // - this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.label1.AutoSize = true; - this.label1.Location = new System.Drawing.Point(9, 15); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(66, 13); - this.label1.Text = "Value name:"; - this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - // - // label2 - // - this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.label2.AutoSize = true; - this.label2.Location = new System.Drawing.Point(9, 54); - this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(61, 13); - this.label2.Text = "Value data:"; - this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - // - // cancelButton - // - this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; - this.cancelButton.Location = new System.Drawing.Point(278, 273); - this.cancelButton.Name = "cancelButton"; - this.cancelButton.Size = new System.Drawing.Size(75, 23); - this.cancelButton.TabIndex = 2; - this.cancelButton.Text = "Cancel"; - this.cancelButton.UseVisualStyleBackColor = true; - // - // okButton - // - this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK; - this.okButton.Location = new System.Drawing.Point(197, 273); - this.okButton.Name = "okButton"; - this.okButton.Size = new System.Drawing.Size(75, 23); - this.okButton.TabIndex = 1; - this.okButton.Text = "OK"; - this.okButton.UseVisualStyleBackColor = true; - this.okButton.Click += new System.EventHandler(this.okButton_Click); - // - // hexEditor - // - this.hexEditor.BackColor = System.Drawing.Color.White; - this.hexEditor.BorderColor = System.Drawing.Color.Empty; - this.hexEditor.Cursor = System.Windows.Forms.Cursors.IBeam; - this.hexEditor.EntityMargin = 8; - this.hexEditor.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.hexEditor.Location = new System.Drawing.Point(12, 71); - this.hexEditor.Margin = new System.Windows.Forms.Padding(0, 2, 3, 3); - this.hexEditor.Name = "hexEditor"; - this.hexEditor.Size = new System.Drawing.Size(341, 196); - this.hexEditor.TabIndex = 0; - this.hexEditor.VScrollBarVisisble = true; - // - // FrmRegValueEditBinary - // - this.AcceptButton = this.okButton; - this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; - this.CancelButton = this.cancelButton; - this.ClientSize = new System.Drawing.Size(365, 304); - this.Controls.Add(this.cancelButton); - this.Controls.Add(this.hexEditor); - this.Controls.Add(this.okButton); - this.Controls.Add(this.label2); - this.Controls.Add(this.valueNameTxtBox); - this.Controls.Add(this.label1); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "FrmRegValueEditBinary"; - this.ShowIcon = false; - this.Text = "Edit Binary"; - this.ResumeLayout(false); - this.PerformLayout(); - + this.valueNameTxtBox = new System.Windows.Forms.TextBox(); + this.label1 = new System.Windows.Forms.Label(); + this.label2 = new System.Windows.Forms.Label(); + this.cancelButton = new System.Windows.Forms.Button(); + this.okButton = new System.Windows.Forms.Button(); + this.hexEditor = new SiMay.RemoteMonitor.UserControls.HexEditor.HexEditor(); + this.SuspendLayout(); + // + // valueNameTxtBox + // + this.valueNameTxtBox.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.valueNameTxtBox.Location = new System.Drawing.Point(12, 31); + this.valueNameTxtBox.Name = "valueNameTxtBox"; + this.valueNameTxtBox.ReadOnly = true; + this.valueNameTxtBox.Size = new System.Drawing.Size(341, 21); + this.valueNameTxtBox.TabIndex = 3; + // + // label1 + // + this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.label1.AutoSize = true; + this.label1.Location = new System.Drawing.Point(9, 15); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(59, 12); + this.label1.TabIndex = 4; + this.label1.Text = "数值名称:"; + this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // label2 + // + this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.label2.AutoSize = true; + this.label2.Location = new System.Drawing.Point(9, 54); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(59, 12); + this.label2.TabIndex = 3; + this.label2.Text = "数值数据:"; + this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // cancelButton + // + this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; + this.cancelButton.Location = new System.Drawing.Point(278, 273); + this.cancelButton.Name = "cancelButton"; + this.cancelButton.Size = new System.Drawing.Size(75, 23); + this.cancelButton.TabIndex = 2; + this.cancelButton.Text = "取消"; + this.cancelButton.UseVisualStyleBackColor = true; + // + // okButton + // + this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK; + this.okButton.Location = new System.Drawing.Point(197, 273); + this.okButton.Name = "okButton"; + this.okButton.Size = new System.Drawing.Size(75, 23); + this.okButton.TabIndex = 1; + this.okButton.Text = "确定"; + this.okButton.UseVisualStyleBackColor = true; + this.okButton.Click += new System.EventHandler(this.okButton_Click); + // + // hexEditor + // + this.hexEditor.BackColor = System.Drawing.Color.White; + this.hexEditor.BorderColor = System.Drawing.Color.Empty; + this.hexEditor.Cursor = System.Windows.Forms.Cursors.IBeam; + this.hexEditor.EntityMargin = 8; + this.hexEditor.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.hexEditor.Location = new System.Drawing.Point(12, 71); + this.hexEditor.Margin = new System.Windows.Forms.Padding(0, 2, 3, 3); + this.hexEditor.Name = "hexEditor"; + this.hexEditor.Size = new System.Drawing.Size(341, 196); + this.hexEditor.TabIndex = 0; + this.hexEditor.VScrollBarVisisble = true; + // + // RegValueEditBinaryForm + // + this.AcceptButton = this.okButton; + this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; + this.CancelButton = this.cancelButton; + this.ClientSize = new System.Drawing.Size(365, 304); + this.Controls.Add(this.cancelButton); + this.Controls.Add(this.hexEditor); + this.Controls.Add(this.okButton); + this.Controls.Add(this.label2); + this.Controls.Add(this.valueNameTxtBox); + this.Controls.Add(this.label1); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "RegValueEditBinaryForm"; + this.ShowIcon = false; + this.Text = "编辑二进制数值"; + this.ResumeLayout(false); + this.PerformLayout(); + } #endregion diff --git a/SiMay.RemoteMonitor/Application/RegValueEditBinaryForm.resx b/SiMay.RemoteMonitor/Application/RegValueEditBinaryForm.resx index 1af7de150c99c12dd67a509fe57c10d63e4eeb04..29dcb1b3a353ba227f65e11fbe3d6f0766e84292 100644 --- a/SiMay.RemoteMonitor/Application/RegValueEditBinaryForm.resx +++ b/SiMay.RemoteMonitor/Application/RegValueEditBinaryForm.resx @@ -1,120 +1,120 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file diff --git a/SiMay.RemoteMonitor/Application/RegValueEditMultiStringForm.designer.cs b/SiMay.RemoteMonitor/Application/RegValueEditMultiStringForm.designer.cs index 61f05bd1b59c373b7b48894eb4725bea30ca7ee4..cc140c98a409c29dddd5099c2a8bd012af44a3dd 100644 --- a/SiMay.RemoteMonitor/Application/RegValueEditMultiStringForm.designer.cs +++ b/SiMay.RemoteMonitor/Application/RegValueEditMultiStringForm.designer.cs @@ -28,104 +28,106 @@ /// private void InitializeComponent() { - this.valueNameTxtBox = new System.Windows.Forms.TextBox(); - this.label1 = new System.Windows.Forms.Label(); - this.label2 = new System.Windows.Forms.Label(); - this.cancelButton = new System.Windows.Forms.Button(); - this.okButton = new System.Windows.Forms.Button(); - this.valueDataTxtBox = new System.Windows.Forms.TextBox(); - this.SuspendLayout(); - // - // valueNameTxtBox - // - this.valueNameTxtBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.valueNameTxtBox.Location = new System.Drawing.Point(15, 25); - this.valueNameTxtBox.Name = "valueNameTxtBox"; - this.valueNameTxtBox.ReadOnly = true; - this.valueNameTxtBox.Size = new System.Drawing.Size(346, 20); - this.valueNameTxtBox.TabIndex = 3; - // - // label1 - // - this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.label1.AutoSize = true; - this.label1.Location = new System.Drawing.Point(12, 9); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(66, 13); - this.label1.Text = "Value name:"; - this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - // - // label2 - // - this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.label2.AutoSize = true; - this.label2.Location = new System.Drawing.Point(12, 53); - this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(61, 13); - this.label2.Text = "Value data:"; - this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - // - // cancelButton - // - this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; - this.cancelButton.Location = new System.Drawing.Point(286, 330); - this.cancelButton.Name = "cancelButton"; - this.cancelButton.Size = new System.Drawing.Size(75, 23); - this.cancelButton.TabIndex = 2; - this.cancelButton.Text = "Cancel"; - this.cancelButton.UseVisualStyleBackColor = true; - // - // okButton - // - this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK; - this.okButton.Location = new System.Drawing.Point(205, 330); - this.okButton.Name = "okButton"; - this.okButton.Size = new System.Drawing.Size(75, 23); - this.okButton.TabIndex = 1; - this.okButton.Text = "OK"; - this.okButton.UseVisualStyleBackColor = true; - this.okButton.Click += new System.EventHandler(this.okButton_Click); - // - // valueDataTxtBox - // - this.valueDataTxtBox.AcceptsReturn = true; - this.valueDataTxtBox.Location = new System.Drawing.Point(15, 72); - this.valueDataTxtBox.Multiline = true; - this.valueDataTxtBox.Name = "valueDataTxtBox"; - this.valueDataTxtBox.ScrollBars = System.Windows.Forms.ScrollBars.Both; - this.valueDataTxtBox.Size = new System.Drawing.Size(346, 252); - this.valueDataTxtBox.TabIndex = 0; - this.valueDataTxtBox.WordWrap = false; - // - // FrmRegValueEditMultiString - // - this.AcceptButton = this.okButton; - this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; - this.CancelButton = this.cancelButton; - this.ClientSize = new System.Drawing.Size(373, 365); - this.Controls.Add(this.cancelButton); - this.Controls.Add(this.valueDataTxtBox); - this.Controls.Add(this.okButton); - this.Controls.Add(this.label2); - this.Controls.Add(this.valueNameTxtBox); - this.Controls.Add(this.label1); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "FrmRegValueEditMultiString"; - this.ShowIcon = false; - this.Text = "Edit Multi-String"; - this.ResumeLayout(false); - this.PerformLayout(); - + this.valueNameTxtBox = new System.Windows.Forms.TextBox(); + this.label1 = new System.Windows.Forms.Label(); + this.label2 = new System.Windows.Forms.Label(); + this.cancelButton = new System.Windows.Forms.Button(); + this.okButton = new System.Windows.Forms.Button(); + this.valueDataTxtBox = new System.Windows.Forms.TextBox(); + this.SuspendLayout(); + // + // valueNameTxtBox + // + this.valueNameTxtBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.valueNameTxtBox.Location = new System.Drawing.Point(15, 25); + this.valueNameTxtBox.Name = "valueNameTxtBox"; + this.valueNameTxtBox.ReadOnly = true; + this.valueNameTxtBox.Size = new System.Drawing.Size(346, 21); + this.valueNameTxtBox.TabIndex = 3; + // + // label1 + // + this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.label1.AutoSize = true; + this.label1.Location = new System.Drawing.Point(12, 9); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(59, 12); + this.label1.TabIndex = 4; + this.label1.Text = "数值名称:"; + this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // label2 + // + this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.label2.AutoSize = true; + this.label2.Location = new System.Drawing.Point(12, 53); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(59, 12); + this.label2.TabIndex = 3; + this.label2.Text = "数值数据:"; + this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // cancelButton + // + this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; + this.cancelButton.Location = new System.Drawing.Point(286, 330); + this.cancelButton.Name = "cancelButton"; + this.cancelButton.Size = new System.Drawing.Size(75, 23); + this.cancelButton.TabIndex = 2; + this.cancelButton.Text = "取消"; + this.cancelButton.UseVisualStyleBackColor = true; + // + // okButton + // + this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK; + this.okButton.Location = new System.Drawing.Point(205, 330); + this.okButton.Name = "okButton"; + this.okButton.Size = new System.Drawing.Size(75, 23); + this.okButton.TabIndex = 1; + this.okButton.Text = "确定"; + this.okButton.UseVisualStyleBackColor = true; + this.okButton.Click += new System.EventHandler(this.okButton_Click); + // + // valueDataTxtBox + // + this.valueDataTxtBox.AcceptsReturn = true; + this.valueDataTxtBox.Location = new System.Drawing.Point(15, 72); + this.valueDataTxtBox.Multiline = true; + this.valueDataTxtBox.Name = "valueDataTxtBox"; + this.valueDataTxtBox.ScrollBars = System.Windows.Forms.ScrollBars.Both; + this.valueDataTxtBox.Size = new System.Drawing.Size(346, 252); + this.valueDataTxtBox.TabIndex = 0; + this.valueDataTxtBox.WordWrap = false; + // + // RegValueEditMultiStringForm + // + this.AcceptButton = this.okButton; + this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; + this.CancelButton = this.cancelButton; + this.ClientSize = new System.Drawing.Size(373, 365); + this.Controls.Add(this.cancelButton); + this.Controls.Add(this.valueDataTxtBox); + this.Controls.Add(this.okButton); + this.Controls.Add(this.label2); + this.Controls.Add(this.valueNameTxtBox); + this.Controls.Add(this.label1); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "RegValueEditMultiStringForm"; + this.ShowIcon = false; + this.Text = "编辑多字符串"; + this.ResumeLayout(false); + this.PerformLayout(); + } #endregion diff --git a/SiMay.RemoteMonitor/Application/RegValueEditMultiStringForm.resx b/SiMay.RemoteMonitor/Application/RegValueEditMultiStringForm.resx index 1af7de150c99c12dd67a509fe57c10d63e4eeb04..29dcb1b3a353ba227f65e11fbe3d6f0766e84292 100644 --- a/SiMay.RemoteMonitor/Application/RegValueEditMultiStringForm.resx +++ b/SiMay.RemoteMonitor/Application/RegValueEditMultiStringForm.resx @@ -1,120 +1,120 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file diff --git a/SiMay.RemoteMonitor/Application/RegValueEditStringForm.designer.cs b/SiMay.RemoteMonitor/Application/RegValueEditStringForm.designer.cs index e359b5af17a70c988b52035e032a6c759aebdd89..7a93f23a93ae1776f1d78c63c85f2a43fb1324b9 100644 --- a/SiMay.RemoteMonitor/Application/RegValueEditStringForm.designer.cs +++ b/SiMay.RemoteMonitor/Application/RegValueEditStringForm.designer.cs @@ -28,107 +28,107 @@ /// private void InitializeComponent() { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RegValueEditStringForm)); - this.label1 = new System.Windows.Forms.Label(); - this.valueNameTxtBox = new System.Windows.Forms.TextBox(); - this.label2 = new System.Windows.Forms.Label(); - this.valueDataTxtBox = new System.Windows.Forms.TextBox(); - this.cancelButton = new System.Windows.Forms.Button(); - this.okButton = new System.Windows.Forms.Button(); - this.SuspendLayout(); - // - // label1 - // - this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.label1.AutoSize = true; - this.label1.Location = new System.Drawing.Point(9, 12); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(66, 13); - this.label1.Text = "Value name:"; - this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - // - // valueNameTxtBox - // - this.valueNameTxtBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.valueNameTxtBox.Location = new System.Drawing.Point(12, 28); - this.valueNameTxtBox.Name = "valueNameTxtBox"; - this.valueNameTxtBox.ReadOnly = true; - this.valueNameTxtBox.Size = new System.Drawing.Size(343, 20); - this.valueNameTxtBox.TabIndex = 3; - // - // label2 - // - this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.label2.AutoSize = true; - this.label2.Location = new System.Drawing.Point(9, 60); - this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(61, 13); - this.label2.Text = "Value data:"; - this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - // - // valueDataTxtBox - // - this.valueDataTxtBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.valueDataTxtBox.Location = new System.Drawing.Point(12, 76); - this.valueDataTxtBox.Name = "valueDataTxtBox"; - this.valueDataTxtBox.Size = new System.Drawing.Size(343, 20); - this.valueDataTxtBox.TabIndex = 0; - // - // cancelButton - // - this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; - this.cancelButton.Location = new System.Drawing.Point(280, 111); - this.cancelButton.Name = "cancelButton"; - this.cancelButton.Size = new System.Drawing.Size(75, 23); - this.cancelButton.TabIndex = 2; - this.cancelButton.Text = "Cancel"; - this.cancelButton.UseVisualStyleBackColor = true; - // - // okButton - // - this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK; - this.okButton.Location = new System.Drawing.Point(199, 111); - this.okButton.Name = "okButton"; - this.okButton.Size = new System.Drawing.Size(75, 23); - this.okButton.TabIndex = 1; - this.okButton.Text = "OK"; - this.okButton.UseVisualStyleBackColor = true; - this.okButton.Click += new System.EventHandler(this.okButton_Click); - // - // FrmRegValueEditString - // - this.AcceptButton = this.okButton; - this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; - this.CancelButton = this.cancelButton; - this.ClientSize = new System.Drawing.Size(364, 146); - this.Controls.Add(this.cancelButton); - this.Controls.Add(this.okButton); - this.Controls.Add(this.label2); - this.Controls.Add(this.valueNameTxtBox); - this.Controls.Add(this.valueDataTxtBox); - this.Controls.Add(this.label1); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.KeyPreview = true; - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "FrmRegValueEditString"; - this.ShowIcon = false; - this.ShowInTaskbar = false; - this.Text = "Edit String"; - this.ResumeLayout(false); - this.PerformLayout(); - + this.label1 = new System.Windows.Forms.Label(); + this.valueNameTxtBox = new System.Windows.Forms.TextBox(); + this.label2 = new System.Windows.Forms.Label(); + this.valueDataTxtBox = new System.Windows.Forms.TextBox(); + this.cancelButton = new System.Windows.Forms.Button(); + this.okButton = new System.Windows.Forms.Button(); + this.SuspendLayout(); + // + // label1 + // + this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.label1.AutoSize = true; + this.label1.Location = new System.Drawing.Point(9, 12); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(59, 12); + this.label1.TabIndex = 4; + this.label1.Text = "数值名称:"; + this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // valueNameTxtBox + // + this.valueNameTxtBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.valueNameTxtBox.Location = new System.Drawing.Point(12, 28); + this.valueNameTxtBox.Name = "valueNameTxtBox"; + this.valueNameTxtBox.ReadOnly = true; + this.valueNameTxtBox.Size = new System.Drawing.Size(343, 21); + this.valueNameTxtBox.TabIndex = 3; + // + // label2 + // + this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.label2.AutoSize = true; + this.label2.Location = new System.Drawing.Point(9, 60); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(59, 12); + this.label2.TabIndex = 3; + this.label2.Text = "数值数据:"; + this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // valueDataTxtBox + // + this.valueDataTxtBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.valueDataTxtBox.Location = new System.Drawing.Point(12, 76); + this.valueDataTxtBox.Name = "valueDataTxtBox"; + this.valueDataTxtBox.Size = new System.Drawing.Size(343, 21); + this.valueDataTxtBox.TabIndex = 0; + // + // cancelButton + // + this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; + this.cancelButton.Location = new System.Drawing.Point(280, 111); + this.cancelButton.Name = "cancelButton"; + this.cancelButton.Size = new System.Drawing.Size(75, 23); + this.cancelButton.TabIndex = 2; + this.cancelButton.Text = "取消"; + this.cancelButton.UseVisualStyleBackColor = true; + // + // okButton + // + this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK; + this.okButton.Location = new System.Drawing.Point(199, 111); + this.okButton.Name = "okButton"; + this.okButton.Size = new System.Drawing.Size(75, 23); + this.okButton.TabIndex = 1; + this.okButton.Text = "确定"; + this.okButton.UseVisualStyleBackColor = true; + this.okButton.Click += new System.EventHandler(this.okButton_Click); + // + // RegValueEditStringForm + // + this.AcceptButton = this.okButton; + this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; + this.CancelButton = this.cancelButton; + this.ClientSize = new System.Drawing.Size(364, 146); + this.Controls.Add(this.cancelButton); + this.Controls.Add(this.okButton); + this.Controls.Add(this.label2); + this.Controls.Add(this.valueNameTxtBox); + this.Controls.Add(this.valueDataTxtBox); + this.Controls.Add(this.label1); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; + this.KeyPreview = true; + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "RegValueEditStringForm"; + this.ShowIcon = false; + this.ShowInTaskbar = false; + this.Text = "编辑字符串"; + this.ResumeLayout(false); + this.PerformLayout(); + } #endregion diff --git a/SiMay.RemoteMonitor/Application/RegValueEditStringForm.resx b/SiMay.RemoteMonitor/Application/RegValueEditStringForm.resx index 1af7de150c99c12dd67a509fe57c10d63e4eeb04..29dcb1b3a353ba227f65e11fbe3d6f0766e84292 100644 --- a/SiMay.RemoteMonitor/Application/RegValueEditStringForm.resx +++ b/SiMay.RemoteMonitor/Application/RegValueEditStringForm.resx @@ -1,120 +1,120 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file diff --git a/SiMay.RemoteMonitor/Application/RegValueEditWordForm.designer.cs b/SiMay.RemoteMonitor/Application/RegValueEditWordForm.designer.cs index c6328e69b88f7cf7a9dfcf0fae7cb34b1dfd4926..ea2470aba1297cf5c96ae2bcbf1d984464273897 100644 --- a/SiMay.RemoteMonitor/Application/RegValueEditWordForm.designer.cs +++ b/SiMay.RemoteMonitor/Application/RegValueEditWordForm.designer.cs @@ -31,150 +31,148 @@ namespace SiMay.RemoteMonitor.Application /// private void InitializeComponent() { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RegValueEditWordForm)); - this.valueNameTxtBox = new System.Windows.Forms.TextBox(); - this.label1 = new System.Windows.Forms.Label(); - this.label2 = new System.Windows.Forms.Label(); - this.cancelButton = new System.Windows.Forms.Button(); - this.okButton = new System.Windows.Forms.Button(); - this.baseBox = new System.Windows.Forms.GroupBox(); - this.radioDecimal = new System.Windows.Forms.RadioButton(); - this.radioHexa = new System.Windows.Forms.RadioButton(); - this.valueDataTxtBox = new WordTextBox(); - this.baseBox.SuspendLayout(); - this.SuspendLayout(); - // - // valueNameTxtBox - // - this.valueNameTxtBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.valueNameTxtBox.Location = new System.Drawing.Point(12, 27); - this.valueNameTxtBox.Name = "valueNameTxtBox"; - this.valueNameTxtBox.ReadOnly = true; - this.valueNameTxtBox.Size = new System.Drawing.Size(334, 20); - this.valueNameTxtBox.TabIndex = 5; - // - // label1 - // - this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.label1.AutoSize = true; - this.label1.Location = new System.Drawing.Point(9, 11); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(66, 13); - this.label1.TabIndex = 10; - this.label1.Text = "Value name:"; - this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - // - // label2 - // - this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.label2.AutoSize = true; - this.label2.Location = new System.Drawing.Point(9, 53); - this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(61, 13); - this.label2.TabIndex = 9; - this.label2.Text = "Value data:"; - this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - // - // cancelButton - // - this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; - this.cancelButton.Location = new System.Drawing.Point(271, 128); - this.cancelButton.Name = "cancelButton"; - this.cancelButton.Size = new System.Drawing.Size(75, 23); - this.cancelButton.TabIndex = 2; - this.cancelButton.Text = "Cancel"; - this.cancelButton.UseVisualStyleBackColor = true; - // - // okButton - // - this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK; - this.okButton.Location = new System.Drawing.Point(190, 128); - this.okButton.Name = "okButton"; - this.okButton.Size = new System.Drawing.Size(75, 23); - this.okButton.TabIndex = 1; - this.okButton.Text = "OK"; - this.okButton.UseVisualStyleBackColor = true; - this.okButton.Click += new System.EventHandler(this.okButton_Click); - // - // baseBox - // - this.baseBox.Controls.Add(this.radioDecimal); - this.baseBox.Controls.Add(this.radioHexa); - this.baseBox.Location = new System.Drawing.Point(190, 53); - this.baseBox.Name = "baseBox"; - this.baseBox.Size = new System.Drawing.Size(156, 63); - this.baseBox.TabIndex = 6; - this.baseBox.TabStop = false; - this.baseBox.Text = "Base"; - // - // radioDecimal - // - this.radioDecimal.AutoSize = true; - this.radioDecimal.Location = new System.Drawing.Point(14, 40); - this.radioDecimal.Name = "radioDecimal"; - this.radioDecimal.Size = new System.Drawing.Size(63, 17); - this.radioDecimal.TabIndex = 4; - this.radioDecimal.Text = "Decimal"; - this.radioDecimal.UseVisualStyleBackColor = true; - // - // radioHexa - // - this.radioHexa.AutoSize = true; - this.radioHexa.Checked = true; - this.radioHexa.Location = new System.Drawing.Point(14, 17); - this.radioHexa.Name = "radioHexa"; - this.radioHexa.Size = new System.Drawing.Size(86, 17); - this.radioHexa.TabIndex = 3; - this.radioHexa.TabStop = true; - this.radioHexa.Text = "Hexadecimal"; - this.radioHexa.UseVisualStyleBackColor = true; - this.radioHexa.CheckedChanged += new System.EventHandler(this.radioHex_CheckboxChanged); - // - // valueDataTxtBox - // - this.valueDataTxtBox.IsHexNumber = true; - this.valueDataTxtBox.Location = new System.Drawing.Point(12, 70); - this.valueDataTxtBox.MaxLength = 8; - this.valueDataTxtBox.Name = "valueDataTxtBox"; - this.valueDataTxtBox.Size = new System.Drawing.Size(161, 20); - this.valueDataTxtBox.TabIndex = 0; - this.valueDataTxtBox.Text = "0"; - this.valueDataTxtBox.Type = WordType.DWORD; - // - // FrmRegValueEditWord - // - this.AcceptButton = this.okButton; - this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; - this.CancelButton = this.cancelButton; - this.ClientSize = new System.Drawing.Size(358, 163); - this.Controls.Add(this.valueDataTxtBox); - this.Controls.Add(this.cancelButton); - this.Controls.Add(this.baseBox); - this.Controls.Add(this.okButton); - this.Controls.Add(this.label2); - this.Controls.Add(this.valueNameTxtBox); - this.Controls.Add(this.label1); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.KeyPreview = true; - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "FrmRegValueEditWord"; - this.ShowIcon = false; - this.Text = "Edit"; - this.baseBox.ResumeLayout(false); - this.baseBox.PerformLayout(); - this.ResumeLayout(false); - this.PerformLayout(); - + this.valueNameTxtBox = new System.Windows.Forms.TextBox(); + this.label1 = new System.Windows.Forms.Label(); + this.label2 = new System.Windows.Forms.Label(); + this.cancelButton = new System.Windows.Forms.Button(); + this.okButton = new System.Windows.Forms.Button(); + this.baseBox = new System.Windows.Forms.GroupBox(); + this.radioDecimal = new System.Windows.Forms.RadioButton(); + this.radioHexa = new System.Windows.Forms.RadioButton(); + this.valueDataTxtBox = new SiMay.RemoteMonitor.UserControls.WordTextBox(); + this.baseBox.SuspendLayout(); + this.SuspendLayout(); + // + // valueNameTxtBox + // + this.valueNameTxtBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.valueNameTxtBox.Location = new System.Drawing.Point(12, 27); + this.valueNameTxtBox.Name = "valueNameTxtBox"; + this.valueNameTxtBox.ReadOnly = true; + this.valueNameTxtBox.Size = new System.Drawing.Size(334, 21); + this.valueNameTxtBox.TabIndex = 5; + // + // label1 + // + this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.label1.AutoSize = true; + this.label1.Location = new System.Drawing.Point(9, 11); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(59, 12); + this.label1.TabIndex = 10; + this.label1.Text = "数值名称:"; + this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // label2 + // + this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.label2.AutoSize = true; + this.label2.Location = new System.Drawing.Point(9, 53); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(59, 12); + this.label2.TabIndex = 9; + this.label2.Text = "数值数据:"; + this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // cancelButton + // + this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; + this.cancelButton.Location = new System.Drawing.Point(271, 128); + this.cancelButton.Name = "cancelButton"; + this.cancelButton.Size = new System.Drawing.Size(75, 23); + this.cancelButton.TabIndex = 2; + this.cancelButton.Text = "取消"; + this.cancelButton.UseVisualStyleBackColor = true; + // + // okButton + // + this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK; + this.okButton.Location = new System.Drawing.Point(190, 128); + this.okButton.Name = "okButton"; + this.okButton.Size = new System.Drawing.Size(75, 23); + this.okButton.TabIndex = 1; + this.okButton.Text = "确定"; + this.okButton.UseVisualStyleBackColor = true; + this.okButton.Click += new System.EventHandler(this.okButton_Click); + // + // baseBox + // + this.baseBox.Controls.Add(this.radioDecimal); + this.baseBox.Controls.Add(this.radioHexa); + this.baseBox.Location = new System.Drawing.Point(190, 53); + this.baseBox.Name = "baseBox"; + this.baseBox.Size = new System.Drawing.Size(156, 63); + this.baseBox.TabIndex = 6; + this.baseBox.TabStop = false; + this.baseBox.Text = "基数"; + // + // radioDecimal + // + this.radioDecimal.AutoSize = true; + this.radioDecimal.Location = new System.Drawing.Point(14, 40); + this.radioDecimal.Name = "radioDecimal"; + this.radioDecimal.Size = new System.Drawing.Size(59, 16); + this.radioDecimal.TabIndex = 4; + this.radioDecimal.Text = "十进制"; + this.radioDecimal.UseVisualStyleBackColor = true; + // + // radioHexa + // + this.radioHexa.AutoSize = true; + this.radioHexa.Checked = true; + this.radioHexa.Location = new System.Drawing.Point(14, 17); + this.radioHexa.Name = "radioHexa"; + this.radioHexa.Size = new System.Drawing.Size(71, 16); + this.radioHexa.TabIndex = 3; + this.radioHexa.TabStop = true; + this.radioHexa.Text = "十六进制"; + this.radioHexa.UseVisualStyleBackColor = true; + this.radioHexa.CheckedChanged += new System.EventHandler(this.radioHex_CheckboxChanged); + // + // valueDataTxtBox + // + this.valueDataTxtBox.IsHexNumber = true; + this.valueDataTxtBox.Location = new System.Drawing.Point(12, 70); + this.valueDataTxtBox.MaxLength = 8; + this.valueDataTxtBox.Name = "valueDataTxtBox"; + this.valueDataTxtBox.Size = new System.Drawing.Size(161, 21); + this.valueDataTxtBox.TabIndex = 0; + this.valueDataTxtBox.Text = "0"; + this.valueDataTxtBox.Type = SiMay.Core.Enums.WordType.DWORD; + // + // RegValueEditWordForm + // + this.AcceptButton = this.okButton; + this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; + this.CancelButton = this.cancelButton; + this.ClientSize = new System.Drawing.Size(358, 163); + this.Controls.Add(this.valueDataTxtBox); + this.Controls.Add(this.cancelButton); + this.Controls.Add(this.baseBox); + this.Controls.Add(this.okButton); + this.Controls.Add(this.label2); + this.Controls.Add(this.valueNameTxtBox); + this.Controls.Add(this.label1); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; + this.KeyPreview = true; + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "RegValueEditWordForm"; + this.ShowIcon = false; + this.Text = "编辑 D/QWORD 值"; + this.baseBox.ResumeLayout(false); + this.baseBox.PerformLayout(); + this.ResumeLayout(false); + this.PerformLayout(); + } #endregion diff --git a/SiMay.RemoteMonitor/Application/RegValueEditWordForm.resx b/SiMay.RemoteMonitor/Application/RegValueEditWordForm.resx index 1af7de150c99c12dd67a509fe57c10d63e4eeb04..29dcb1b3a353ba227f65e11fbe3d6f0766e84292 100644 --- a/SiMay.RemoteMonitor/Application/RegValueEditWordForm.resx +++ b/SiMay.RemoteMonitor/Application/RegValueEditWordForm.resx @@ -1,120 +1,120 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file diff --git a/SiMay.RemoteMonitor/Application/ScreenApplication.cs b/SiMay.RemoteMonitor/Application/ScreenApplication.cs index b27ff6a7a4195f19149606cf58c7abaae224c746..c1012234b8abbc43e168e16a68f10df161485999 100644 --- a/SiMay.RemoteMonitor/Application/ScreenApplication.cs +++ b/SiMay.RemoteMonitor/Application/ScreenApplication.cs @@ -38,6 +38,7 @@ namespace SiMay.RemoteMonitor.Application private const Int32 IDM_SET_CLIPBOARD = 1012; private const Int32 IDM_GET_CLIPBOARD = 1013; private const Int32 IDM_CTRL_ALT_DEL = 1014; + private const Int32 IDM_DELETE_WALLPAPER = 1015; [ApplicationAdapterHandler] public RemoteScreenAdapterHandler RemoteScreenAdapterHandler { get; set; } @@ -104,7 +105,8 @@ namespace SiMay.RemoteMonitor.Application InsertMenu(sysMenuHandle, index++, MF_SEPARATOR, 0, null); InsertMenu(sysMenuHandle, index++, MF_BYPOSITION, IDM_1X, "1位黑白"); InsertMenu(sysMenuHandle, index++, MF_BYPOSITION, IDM_4X, "4位彩色"); - InsertMenu(sysMenuHandle, index++, MF_BYPOSITION, IDM_16X, "16位高彩"); + InsertMenu(sysMenuHandle, index++, MF_BYPOSITION, IDM_16X, "16位高彩"); + InsertMenu(sysMenuHandle, index++, MF_BYPOSITION, IDM_DELETE_WALLPAPER, "删除壁纸"); InsertMenu(sysMenuHandle, index++, MF_BYPOSITION, IDM_Qty, "质量设置"); InsertMenu(sysMenuHandle, index++, MF_BYPOSITION, IDM_CTRL_ALT_DEL, "Ctrl + Alt + Del"); @@ -336,6 +338,9 @@ namespace SiMay.RemoteMonitor.Application case IDM_CTRL_ALT_DEL: this.RemoteScreenAdapterHandler.SendCtrlAltDel(); break; + case IDM_DELETE_WALLPAPER: + this.RemoteScreenAdapterHandler.RemoteDeleteWallPaper(); + break; } } diff --git a/SiMay.RemoteMonitor/MainApplication/MainApplication.Designer.cs b/SiMay.RemoteMonitor/MainApplication/MainApplication.Designer.cs index a09a977f58fe7fab194735e129b3c119d43d6c1b..28812ac2e17a7611eba9b65ae88b4294418b5c97 100644 --- a/SiMay.RemoteMonitor/MainApplication/MainApplication.Designer.cs +++ b/SiMay.RemoteMonitor/MainApplication/MainApplication.Designer.cs @@ -28,1000 +28,985 @@ /// private void InitializeComponent() { - this.components = new System.ComponentModel.Container(); - this.CmdContext = new System.Windows.Forms.ContextMenuStrip(this.components); - this.toolStripMenuItem11 = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripMenuItem6 = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); - this.发送信息ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.备注更改ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripMenuItem7 = new System.Windows.Forms.ToolStripMenuItem(); - this.会话管理ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.updateClient = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripMenuItem8 = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator(); - this.关闭计算机ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.重启计算机ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); - this.开机启动ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.取消自启动ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.隐藏服务端ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator(); - this.卸载控制端ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator(); - this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripMenuItem5 = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); - this.选择全部ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.取消选择ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.logsContext = new System.Windows.Forms.ContextMenuStrip(this.components); - this.复制日志ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.删除日志ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.清空日志ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); - this.splitContainer1 = new System.Windows.Forms.SplitContainer(); - this.desktopViewLayout = new System.Windows.Forms.FlowLayoutPanel(); - this.panel1 = new System.Windows.Forms.Panel(); - this.label3 = new System.Windows.Forms.Label(); - this.groupBox = new System.Windows.Forms.ComboBox(); - this.label2 = new System.Windows.Forms.Label(); - this.deskrefreshTimeSpan = new System.Windows.Forms.NumericUpDown(); - this.button2 = new System.Windows.Forms.Button(); - this.button1 = new System.Windows.Forms.Button(); - this.column = new System.Windows.Forms.Label(); - this.fsd = new System.Windows.Forms.Label(); - this.row = new System.Windows.Forms.Label(); - this.rowtrackBar = new System.Windows.Forms.TrackBar(); - this.linkLabel1 = new System.Windows.Forms.LinkLabel(); - this.label1 = new System.Windows.Forms.Label(); - this.columntrackBar = new System.Windows.Forms.TrackBar(); - this.splitContainer2 = new System.Windows.Forms.SplitContainer(); - this.tabControl2 = new System.Windows.Forms.TabControl(); - this.tabPage2 = new System.Windows.Forms.TabPage(); - this.logList = new SiMay.RemoteMonitor.UserControls.UListView(); - this.tabControl1 = new System.Windows.Forms.TabControl(); - this.tabPage1 = new System.Windows.Forms.TabPage(); - this.onlineList = new SiMay.RemoteMonitor.UserControls.UListView(); - this.statusStrip1 = new System.Windows.Forms.StatusStrip(); - this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel(); - this.stripHost = new System.Windows.Forms.ToolStripStatusLabel(); - this.toolStripStatusLabel5 = new System.Windows.Forms.ToolStripStatusLabel(); - this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel(); - this.struflow = new System.Windows.Forms.ToolStripStatusLabel(); - this.toolStripStatusLabel4 = new System.Windows.Forms.ToolStripStatusLabel(); - this.toolStripStatusLabel7 = new System.Windows.Forms.ToolStripStatusLabel(); - this.strdownflow = new System.Windows.Forms.ToolStripStatusLabel(); - this.toolStripStatusLabel8 = new System.Windows.Forms.ToolStripStatusLabel(); - this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel(); - this.stripPort = new System.Windows.Forms.ToolStripStatusLabel(); - this.toolStripStatusLabel6 = new System.Windows.Forms.ToolStripStatusLabel(); - this.stripConnectedNum = new System.Windows.Forms.ToolStripStatusLabel(); - this.toolStrip1 = new System.Windows.Forms.ToolStrip(); - this.toolStripButton10 = new System.Windows.Forms.ToolStripButton(); - this.toolStripButton9 = new System.Windows.Forms.ToolStripButton(); - this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator(); - this.toolStripButton7 = new System.Windows.Forms.ToolStripButton(); - this.toolStripButton6 = new System.Windows.Forms.ToolStripButton(); - this.toolStripButton14 = new System.Windows.Forms.ToolStripButton(); - this.toolStripButton8 = new System.Windows.Forms.ToolStripButton(); - this.menuStrip1 = new System.Windows.Forms.MenuStrip(); - this.系统设置ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.创建客户ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.查看ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.statusToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.onlineToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator(); - this.桌面记录查看ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.锁定ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem(); - this.CmdContext.SuspendLayout(); - this.logsContext.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); - this.splitContainer1.Panel1.SuspendLayout(); - this.splitContainer1.Panel2.SuspendLayout(); - this.splitContainer1.SuspendLayout(); - this.panel1.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.deskrefreshTimeSpan)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.rowtrackBar)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.columntrackBar)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit(); - this.splitContainer2.Panel1.SuspendLayout(); - this.splitContainer2.Panel2.SuspendLayout(); - this.splitContainer2.SuspendLayout(); - this.tabControl2.SuspendLayout(); - this.tabPage2.SuspendLayout(); - this.tabControl1.SuspendLayout(); - this.tabPage1.SuspendLayout(); - this.statusStrip1.SuspendLayout(); - this.toolStrip1.SuspendLayout(); - this.menuStrip1.SuspendLayout(); - this.SuspendLayout(); - // - // CmdContext - // - this.CmdContext.ImageScalingSize = new System.Drawing.Size(20, 20); - this.CmdContext.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.toolStripMenuItem11, - this.toolStripMenuItem6, - this.toolStripMenuItem1, - this.发送信息ToolStripMenuItem, - this.备注更改ToolStripMenuItem, - this.toolStripMenuItem7, - this.会话管理ToolStripMenuItem, - this.toolStripSeparator4, - this.toolStripMenuItem4, - this.toolStripMenuItem5, - this.toolStripSeparator1, - this.选择全部ToolStripMenuItem, - this.取消选择ToolStripMenuItem}); - this.CmdContext.Name = "CmdContext"; - this.CmdContext.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional; - this.CmdContext.Size = new System.Drawing.Size(137, 258); - this.CmdContext.Opening += new System.ComponentModel.CancelEventHandler(this.CmdContext_Opening); - // - // toolStripMenuItem11 - // - this.toolStripMenuItem11.Name = "toolStripMenuItem11"; - this.toolStripMenuItem11.Size = new System.Drawing.Size(136, 22); - this.toolStripMenuItem11.Text = "桌面记录"; - this.toolStripMenuItem11.Click += new System.EventHandler(this.toolStripMenuItem11_Click); - // - // toolStripMenuItem6 - // - this.toolStripMenuItem6.Name = "toolStripMenuItem6"; - this.toolStripMenuItem6.Size = new System.Drawing.Size(136, 22); - this.toolStripMenuItem6.Text = "打开网页"; - this.toolStripMenuItem6.Click += new System.EventHandler(this.toolStripMenuItem6_Click_1); - // - // toolStripMenuItem1 - // - this.toolStripMenuItem1.Name = "toolStripMenuItem1"; - this.toolStripMenuItem1.Size = new System.Drawing.Size(136, 22); - this.toolStripMenuItem1.Text = "下载执行"; - this.toolStripMenuItem1.Click += new System.EventHandler(this.RemoteDownloadExecete); - // - // 发送信息ToolStripMenuItem - // - this.发送信息ToolStripMenuItem.Name = "发送信息ToolStripMenuItem"; - this.发送信息ToolStripMenuItem.Size = new System.Drawing.Size(136, 22); - this.发送信息ToolStripMenuItem.Text = "发送信息"; - this.发送信息ToolStripMenuItem.Click += new System.EventHandler(this.SendMessageBox); - // - // 备注更改ToolStripMenuItem - // - this.备注更改ToolStripMenuItem.Name = "备注更改ToolStripMenuItem"; - this.备注更改ToolStripMenuItem.Size = new System.Drawing.Size(136, 22); - this.备注更改ToolStripMenuItem.Text = "备注更改"; - this.备注更改ToolStripMenuItem.Click += new System.EventHandler(this.ModifyRemark); - // - // toolStripMenuItem7 - // - this.toolStripMenuItem7.Name = "toolStripMenuItem7"; - this.toolStripMenuItem7.Size = new System.Drawing.Size(136, 22); - this.toolStripMenuItem7.Text = "分组更改"; - this.toolStripMenuItem7.Click += new System.EventHandler(this.ToolStripMenuItem7_Click); - // - // 会话管理ToolStripMenuItem - // - this.会话管理ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.updateClient, - this.toolStripMenuItem8, - this.toolStripSeparator6, - this.关闭计算机ToolStripMenuItem, - this.重启计算机ToolStripMenuItem, - this.toolStripSeparator2, - this.开机启动ToolStripMenuItem, - this.取消自启动ToolStripMenuItem, - this.隐藏服务端ToolStripMenuItem, - this.toolStripMenuItem2, - this.toolStripSeparator3, - this.卸载控制端ToolStripMenuItem}); - this.会话管理ToolStripMenuItem.Name = "会话管理ToolStripMenuItem"; - this.会话管理ToolStripMenuItem.Size = new System.Drawing.Size(136, 22); - this.会话管理ToolStripMenuItem.Text = "会话管理"; - // - // updateClient - // - this.updateClient.Name = "updateClient"; - this.updateClient.Size = new System.Drawing.Size(136, 22); - this.updateClient.Text = "远程更新"; - this.updateClient.Click += new System.EventHandler(this.UpdateClient_Click); - // - // toolStripMenuItem8 - // - this.toolStripMenuItem8.Name = "toolStripMenuItem8"; - this.toolStripMenuItem8.Size = new System.Drawing.Size(136, 22); - this.toolStripMenuItem8.Text = "重新载入"; - this.toolStripMenuItem8.Click += new System.EventHandler(this.ToolStripMenuItem8_Click); - // - // toolStripSeparator6 - // - this.toolStripSeparator6.Name = "toolStripSeparator6"; - this.toolStripSeparator6.Size = new System.Drawing.Size(133, 6); - // - // 关闭计算机ToolStripMenuItem - // - this.关闭计算机ToolStripMenuItem.Name = "关闭计算机ToolStripMenuItem"; - this.关闭计算机ToolStripMenuItem.Size = new System.Drawing.Size(136, 22); - this.关闭计算机ToolStripMenuItem.Text = "关闭计算机"; - this.关闭计算机ToolStripMenuItem.Click += new System.EventHandler(this.RemoteShutdown); - // - // 重启计算机ToolStripMenuItem - // - this.重启计算机ToolStripMenuItem.Name = "重启计算机ToolStripMenuItem"; - this.重启计算机ToolStripMenuItem.Size = new System.Drawing.Size(136, 22); - this.重启计算机ToolStripMenuItem.Text = "重启计算机"; - this.重启计算机ToolStripMenuItem.Click += new System.EventHandler(this.RemoteReboot); - // - // toolStripSeparator2 - // - this.toolStripSeparator2.Name = "toolStripSeparator2"; - this.toolStripSeparator2.Size = new System.Drawing.Size(133, 6); - // - // 开机启动ToolStripMenuItem - // - this.开机启动ToolStripMenuItem.Name = "开机启动ToolStripMenuItem"; - this.开机启动ToolStripMenuItem.Size = new System.Drawing.Size(136, 22); - this.开机启动ToolStripMenuItem.Text = "注册表启动"; - this.开机启动ToolStripMenuItem.Click += new System.EventHandler(this.RemoteStartup); - // - // 取消自启动ToolStripMenuItem - // - this.取消自启动ToolStripMenuItem.Name = "取消自启动ToolStripMenuItem"; - this.取消自启动ToolStripMenuItem.Size = new System.Drawing.Size(136, 22); - this.取消自启动ToolStripMenuItem.Text = "取消自启动"; - this.取消自启动ToolStripMenuItem.Click += new System.EventHandler(this.RemoteUnStarup); - // - // 隐藏服务端ToolStripMenuItem - // - this.隐藏服务端ToolStripMenuItem.Name = "隐藏服务端ToolStripMenuItem"; - this.隐藏服务端ToolStripMenuItem.Size = new System.Drawing.Size(136, 22); - this.隐藏服务端ToolStripMenuItem.Text = "隐藏服务端"; - this.隐藏服务端ToolStripMenuItem.Click += new System.EventHandler(this.RemoteHideServiceFile); - // - // toolStripMenuItem2 - // - this.toolStripMenuItem2.Name = "toolStripMenuItem2"; - this.toolStripMenuItem2.Size = new System.Drawing.Size(136, 22); - this.toolStripMenuItem2.Text = "显示服务端"; - this.toolStripMenuItem2.Click += new System.EventHandler(this.ToolStripMenuItem2_Click); - // - // toolStripSeparator3 - // - this.toolStripSeparator3.Name = "toolStripSeparator3"; - this.toolStripSeparator3.Size = new System.Drawing.Size(133, 6); - // - // 卸载控制端ToolStripMenuItem - // - this.卸载控制端ToolStripMenuItem.Name = "卸载控制端ToolStripMenuItem"; - this.卸载控制端ToolStripMenuItem.Size = new System.Drawing.Size(136, 22); - this.卸载控制端ToolStripMenuItem.Text = "卸载服务端"; - this.卸载控制端ToolStripMenuItem.Click += new System.EventHandler(this.UninstallService); - // - // toolStripSeparator4 - // - this.toolStripSeparator4.Name = "toolStripSeparator4"; - this.toolStripSeparator4.Size = new System.Drawing.Size(133, 6); - // - // toolStripMenuItem4 - // - this.toolStripMenuItem4.Name = "toolStripMenuItem4"; - this.toolStripMenuItem4.Size = new System.Drawing.Size(136, 22); - this.toolStripMenuItem4.Text = "开启屏幕墙"; - this.toolStripMenuItem4.Click += new System.EventHandler(this.toolStripMenuItem4_Click); - // - // toolStripMenuItem5 - // - this.toolStripMenuItem5.Name = "toolStripMenuItem5"; - this.toolStripMenuItem5.Size = new System.Drawing.Size(136, 22); - this.toolStripMenuItem5.Text = "关闭屏幕墙"; - this.toolStripMenuItem5.Click += new System.EventHandler(this.toolStripMenuItem5_Click); - // - // toolStripSeparator1 - // - this.toolStripSeparator1.Name = "toolStripSeparator1"; - this.toolStripSeparator1.Size = new System.Drawing.Size(133, 6); - // - // 选择全部ToolStripMenuItem - // - this.选择全部ToolStripMenuItem.Name = "选择全部ToolStripMenuItem"; - this.选择全部ToolStripMenuItem.Size = new System.Drawing.Size(136, 22); - this.选择全部ToolStripMenuItem.Text = "选择全部"; - this.选择全部ToolStripMenuItem.Click += new System.EventHandler(this.OnlineList_OnSelected); - // - // 取消选择ToolStripMenuItem - // - this.取消选择ToolStripMenuItem.Name = "取消选择ToolStripMenuItem"; - this.取消选择ToolStripMenuItem.Size = new System.Drawing.Size(136, 22); - this.取消选择ToolStripMenuItem.Text = "取消选择"; - this.取消选择ToolStripMenuItem.Click += new System.EventHandler(this.OnileList_OnUnSelected); - // - // logsContext - // - this.logsContext.ImageScalingSize = new System.Drawing.Size(20, 20); - this.logsContext.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.复制日志ToolStripMenuItem, - this.删除日志ToolStripMenuItem, - this.清空日志ToolStripMenuItem1}); - this.logsContext.Name = "logsContext"; - this.logsContext.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional; - this.logsContext.Size = new System.Drawing.Size(125, 70); - // - // 复制日志ToolStripMenuItem - // - this.复制日志ToolStripMenuItem.Name = "复制日志ToolStripMenuItem"; - this.复制日志ToolStripMenuItem.Size = new System.Drawing.Size(124, 22); - this.复制日志ToolStripMenuItem.Text = "复制日志"; - this.复制日志ToolStripMenuItem.Click += new System.EventHandler(this.CopyRuningLog); - // - // 删除日志ToolStripMenuItem - // - this.删除日志ToolStripMenuItem.Name = "删除日志ToolStripMenuItem"; - this.删除日志ToolStripMenuItem.Size = new System.Drawing.Size(124, 22); - this.删除日志ToolStripMenuItem.Text = "删除日志"; - this.删除日志ToolStripMenuItem.Click += new System.EventHandler(this.DeleteRuningLog); - // - // 清空日志ToolStripMenuItem1 - // - this.清空日志ToolStripMenuItem1.Name = "清空日志ToolStripMenuItem1"; - this.清空日志ToolStripMenuItem1.Size = new System.Drawing.Size(124, 22); - this.清空日志ToolStripMenuItem1.Text = "清空日志"; - this.清空日志ToolStripMenuItem1.Click += new System.EventHandler(this.ClearRuningLog); - // - // splitContainer1 - // - this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; - this.splitContainer1.Location = new System.Drawing.Point(0, 81); - this.splitContainer1.Name = "splitContainer1"; - this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal; - // - // splitContainer1.Panel1 - // - this.splitContainer1.Panel1.Controls.Add(this.desktopViewLayout); - this.splitContainer1.Panel1.Controls.Add(this.panel1); - // - // splitContainer1.Panel2 - // - this.splitContainer1.Panel2.Controls.Add(this.splitContainer2); - this.splitContainer1.Size = new System.Drawing.Size(1107, 647); - this.splitContainer1.SplitterDistance = 469; - this.splitContainer1.SplitterWidth = 1; - this.splitContainer1.TabIndex = 7; - // - // desktopViewLayout - // - this.desktopViewLayout.AutoScroll = true; - this.desktopViewLayout.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.desktopViewLayout.Dock = System.Windows.Forms.DockStyle.Fill; - this.desktopViewLayout.Location = new System.Drawing.Point(0, 0); - this.desktopViewLayout.Name = "desktopViewLayout"; - this.desktopViewLayout.Size = new System.Drawing.Size(1107, 445); - this.desktopViewLayout.TabIndex = 3; - // - // panel1 - // - this.panel1.Controls.Add(this.label3); - this.panel1.Controls.Add(this.groupBox); - this.panel1.Controls.Add(this.label2); - this.panel1.Controls.Add(this.deskrefreshTimeSpan); - this.panel1.Controls.Add(this.button2); - this.panel1.Controls.Add(this.button1); - this.panel1.Controls.Add(this.column); - this.panel1.Controls.Add(this.fsd); - this.panel1.Controls.Add(this.row); - this.panel1.Controls.Add(this.rowtrackBar); - this.panel1.Controls.Add(this.linkLabel1); - this.panel1.Controls.Add(this.label1); - this.panel1.Controls.Add(this.columntrackBar); - this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom; - this.panel1.Location = new System.Drawing.Point(0, 445); - this.panel1.Name = "panel1"; - this.panel1.Size = new System.Drawing.Size(1107, 24); - this.panel1.TabIndex = 4; - // - // label3 - // - this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.label3.AutoSize = true; - this.label3.Location = new System.Drawing.Point(475, 5); - this.label3.Name = "label3"; - this.label3.Size = new System.Drawing.Size(35, 12); - this.label3.TabIndex = 12; - this.label3.Text = "分组:"; - // - // groupBox - // - this.groupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.groupBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.groupBox.FlatStyle = System.Windows.Forms.FlatStyle.System; - this.groupBox.FormattingEnabled = true; - this.groupBox.Items.AddRange(new object[] { - "全部"}); - this.groupBox.Location = new System.Drawing.Point(511, 2); - this.groupBox.Name = "groupBox"; - this.groupBox.Size = new System.Drawing.Size(115, 20); - this.groupBox.TabIndex = 11; - this.groupBox.SelectedIndexChanged += new System.EventHandler(this.GroupBox_SelectedIndexChanged); - // - // label2 - // - this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.label2.AutoSize = true; - this.label2.Location = new System.Drawing.Point(632, 6); - this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(59, 12); - this.label2.TabIndex = 10; - this.label2.Text = "刷新间隔:"; - // - // deskrefreshTimeSpan - // - this.deskrefreshTimeSpan.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.deskrefreshTimeSpan.Increment = new decimal(new int[] { - 100, - 0, - 0, - 0}); - this.deskrefreshTimeSpan.Location = new System.Drawing.Point(692, 2); - this.deskrefreshTimeSpan.Maximum = new decimal(new int[] { - 10000, - 0, - 0, - 0}); - this.deskrefreshTimeSpan.Minimum = new decimal(new int[] { - 300, - 0, - 0, - 0}); - this.deskrefreshTimeSpan.Name = "deskrefreshTimeSpan"; - this.deskrefreshTimeSpan.ReadOnly = true; - this.deskrefreshTimeSpan.Size = new System.Drawing.Size(47, 21); - this.deskrefreshTimeSpan.TabIndex = 9; - this.deskrefreshTimeSpan.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; - this.deskrefreshTimeSpan.Value = new decimal(new int[] { - 300, - 0, - 0, - 0}); - // - // button2 - // - this.button2.Location = new System.Drawing.Point(66, 2); - this.button2.Name = "button2"; - this.button2.Size = new System.Drawing.Size(56, 20); - this.button2.TabIndex = 8; - this.button2.Text = "反选"; - this.button2.UseVisualStyleBackColor = true; - this.button2.Click += new System.EventHandler(this.button2_Click); - // - // button1 - // - this.button1.Location = new System.Drawing.Point(4, 2); - this.button1.Name = "button1"; - this.button1.Size = new System.Drawing.Size(56, 20); - this.button1.TabIndex = 7; - this.button1.Text = "全选"; - this.button1.UseVisualStyleBackColor = true; - this.button1.Click += new System.EventHandler(this.button1_Click); - // - // column - // - this.column.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.column.AutoSize = true; - this.column.Location = new System.Drawing.Point(1010, 6); - this.column.Name = "column"; - this.column.Size = new System.Drawing.Size(23, 12); - this.column.TabIndex = 6; - this.column.Text = "150"; - // - // fsd - // - this.fsd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.fsd.AutoSize = true; - this.fsd.Location = new System.Drawing.Point(745, 6); - this.fsd.Name = "fsd"; - this.fsd.Size = new System.Drawing.Size(35, 12); - this.fsd.TabIndex = 5; - this.fsd.Text = "宽度:"; - // - // row - // - this.row.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.row.AutoSize = true; - this.row.Location = new System.Drawing.Point(863, 6); - this.row.Name = "row"; - this.row.Size = new System.Drawing.Size(23, 12); - this.row.TabIndex = 4; - this.row.Text = "150"; - // - // rowtrackBar - // - this.rowtrackBar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.rowtrackBar.AutoSize = false; - this.rowtrackBar.Location = new System.Drawing.Point(777, 5); - this.rowtrackBar.Maximum = 1000; - this.rowtrackBar.Minimum = 1; - this.rowtrackBar.Name = "rowtrackBar"; - this.rowtrackBar.Size = new System.Drawing.Size(90, 17); - this.rowtrackBar.TabIndex = 3; - this.rowtrackBar.TickStyle = System.Windows.Forms.TickStyle.None; - this.rowtrackBar.Value = 170; - this.rowtrackBar.Scroll += new System.EventHandler(this.RowtrackBar_Scroll); - // - // linkLabel1 - // - this.linkLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.linkLabel1.AutoSize = true; - this.linkLabel1.Location = new System.Drawing.Point(1047, 6); - this.linkLabel1.Name = "linkLabel1"; - this.linkLabel1.Size = new System.Drawing.Size(53, 12); - this.linkLabel1.TabIndex = 2; - this.linkLabel1.TabStop = true; - this.linkLabel1.Text = "保存设置"; - this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked); - // - // label1 - // - this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.label1.AutoSize = true; - this.label1.Location = new System.Drawing.Point(895, 6); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(35, 12); - this.label1.TabIndex = 1; - this.label1.Text = "高度:"; - // - // columntrackBar - // - this.columntrackBar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.columntrackBar.AutoSize = false; - this.columntrackBar.Location = new System.Drawing.Point(924, 5); - this.columntrackBar.Maximum = 1000; - this.columntrackBar.Minimum = 1; - this.columntrackBar.Name = "columntrackBar"; - this.columntrackBar.Size = new System.Drawing.Size(90, 17); - this.columntrackBar.TabIndex = 0; - this.columntrackBar.TickStyle = System.Windows.Forms.TickStyle.None; - this.columntrackBar.Value = 150; - this.columntrackBar.Scroll += new System.EventHandler(this.ColumntrackBar_Scroll); - // - // splitContainer2 - // - this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill; - this.splitContainer2.Location = new System.Drawing.Point(0, 0); - this.splitContainer2.Margin = new System.Windows.Forms.Padding(2); - this.splitContainer2.Name = "splitContainer2"; - // - // splitContainer2.Panel1 - // - this.splitContainer2.Panel1.Controls.Add(this.tabControl2); - // - // splitContainer2.Panel2 - // - this.splitContainer2.Panel2.Controls.Add(this.tabControl1); - this.splitContainer2.Size = new System.Drawing.Size(1107, 177); - this.splitContainer2.SplitterDistance = 276; - this.splitContainer2.SplitterWidth = 1; - this.splitContainer2.TabIndex = 0; - // - // tabControl2 - // - this.tabControl2.Alignment = System.Windows.Forms.TabAlignment.Bottom; - this.tabControl2.Controls.Add(this.tabPage2); - this.tabControl2.Dock = System.Windows.Forms.DockStyle.Fill; - this.tabControl2.Location = new System.Drawing.Point(0, 0); - this.tabControl2.Name = "tabControl2"; - this.tabControl2.SelectedIndex = 0; - this.tabControl2.Size = new System.Drawing.Size(276, 177); - this.tabControl2.SizeMode = System.Windows.Forms.TabSizeMode.Fixed; - this.tabControl2.TabIndex = 1; - // - // tabPage2 - // - this.tabPage2.Controls.Add(this.logList); - this.tabPage2.Location = new System.Drawing.Point(4, 4); - this.tabPage2.Name = "tabPage2"; - this.tabPage2.Padding = new System.Windows.Forms.Padding(3); - this.tabPage2.Size = new System.Drawing.Size(268, 151); - this.tabPage2.TabIndex = 2; - this.tabPage2.Text = "运行日志"; - this.tabPage2.UseVisualStyleBackColor = true; - // - // logList - // - this.logList.BorderStyle = System.Windows.Forms.BorderStyle.None; - this.logList.ContextMenuStrip = this.logsContext; - this.logList.Dock = System.Windows.Forms.DockStyle.Fill; - this.logList.FullRowSelect = true; - this.logList.Location = new System.Drawing.Point(3, 3); - this.logList.Name = "logList"; - this.logList.Size = new System.Drawing.Size(262, 145); - this.logList.TabIndex = 0; - this.logList.UseCompatibleStateImageBehavior = false; - this.logList.UseWindowsThemStyle = true; - this.logList.View = System.Windows.Forms.View.Details; - this.logList.MouseEnter += new System.EventHandler(this.logList_MouseEnter); - // - // tabControl1 - // - this.tabControl1.Alignment = System.Windows.Forms.TabAlignment.Bottom; - this.tabControl1.Controls.Add(this.tabPage1); - this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill; - this.tabControl1.Location = new System.Drawing.Point(0, 0); - this.tabControl1.Name = "tabControl1"; - this.tabControl1.SelectedIndex = 0; - this.tabControl1.Size = new System.Drawing.Size(830, 177); - this.tabControl1.SizeMode = System.Windows.Forms.TabSizeMode.Fixed; - this.tabControl1.TabIndex = 0; - // - // tabPage1 - // - this.tabPage1.Controls.Add(this.onlineList); - this.tabPage1.Location = new System.Drawing.Point(4, 4); - this.tabPage1.Name = "tabPage1"; - this.tabPage1.Padding = new System.Windows.Forms.Padding(3); - this.tabPage1.Size = new System.Drawing.Size(822, 151); - this.tabPage1.TabIndex = 2; - this.tabPage1.Text = "在线列表"; - this.tabPage1.UseVisualStyleBackColor = true; - // - // onlineList - // - this.onlineList.BorderStyle = System.Windows.Forms.BorderStyle.None; - this.onlineList.CheckBoxes = true; - this.onlineList.ContextMenuStrip = this.CmdContext; - this.onlineList.Dock = System.Windows.Forms.DockStyle.Fill; - this.onlineList.FullRowSelect = true; - this.onlineList.Location = new System.Drawing.Point(3, 3); - this.onlineList.Name = "onlineList"; - this.onlineList.Size = new System.Drawing.Size(816, 145); - this.onlineList.TabIndex = 0; - this.onlineList.UseCompatibleStateImageBehavior = false; - this.onlineList.UseWindowsThemStyle = false; - this.onlineList.View = System.Windows.Forms.View.Details; - this.onlineList.MouseEnter += new System.EventHandler(this.onlineList_MouseEnter); - // - // statusStrip1 - // - this.statusStrip1.ImageScalingSize = new System.Drawing.Size(20, 20); - this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.toolStripStatusLabel1, - this.stripHost, - this.toolStripStatusLabel5, - this.toolStripStatusLabel2, - this.struflow, - this.toolStripStatusLabel4, - this.toolStripStatusLabel7, - this.strdownflow, - this.toolStripStatusLabel8, - this.toolStripStatusLabel3, - this.stripPort, - this.toolStripStatusLabel6, - this.stripConnectedNum}); - this.statusStrip1.Location = new System.Drawing.Point(0, 728); - this.statusStrip1.Name = "statusStrip1"; - this.statusStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode; - this.statusStrip1.Size = new System.Drawing.Size(1107, 26); - this.statusStrip1.TabIndex = 2; - this.statusStrip1.Text = "statusStrip1"; - // - // toolStripStatusLabel1 - // - this.toolStripStatusLabel1.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.toolStripStatusLabel1.Name = "toolStripStatusLabel1"; - this.toolStripStatusLabel1.Size = new System.Drawing.Size(71, 21); - this.toolStripStatusLabel1.Text = "服务器地址:"; - // - // stripHost - // - this.stripHost.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.stripHost.Name = "stripHost"; - this.stripHost.Size = new System.Drawing.Size(45, 21); - this.stripHost.Text = "0.0.0.0"; - // - // toolStripStatusLabel5 - // - this.toolStripStatusLabel5.Name = "toolStripStatusLabel5"; - this.toolStripStatusLabel5.Size = new System.Drawing.Size(618, 21); - this.toolStripStatusLabel5.Spring = true; - // - // toolStripStatusLabel2 - // - this.toolStripStatusLabel2.Name = "toolStripStatusLabel2"; - this.toolStripStatusLabel2.Size = new System.Drawing.Size(35, 21); - this.toolStripStatusLabel2.Text = "上传:"; - // - // struflow - // - this.struflow.Name = "struflow"; - this.struflow.Size = new System.Drawing.Size(32, 21); - this.struflow.Text = "0.00"; - // - // toolStripStatusLabel4 - // - this.toolStripStatusLabel4.Name = "toolStripStatusLabel4"; - this.toolStripStatusLabel4.Size = new System.Drawing.Size(36, 21); - this.toolStripStatusLabel4.Text = "KB/S"; - // - // toolStripStatusLabel7 - // - this.toolStripStatusLabel7.Name = "toolStripStatusLabel7"; - this.toolStripStatusLabel7.Size = new System.Drawing.Size(35, 21); - this.toolStripStatusLabel7.Text = "下传:"; - // - // strdownflow - // - this.strdownflow.Name = "strdownflow"; - this.strdownflow.Size = new System.Drawing.Size(32, 21); - this.strdownflow.Text = "0.00"; - // - // toolStripStatusLabel8 - // - this.toolStripStatusLabel8.Name = "toolStripStatusLabel8"; - this.toolStripStatusLabel8.Size = new System.Drawing.Size(36, 21); - this.toolStripStatusLabel8.Text = "KB/S"; - // - // toolStripStatusLabel3 - // - this.toolStripStatusLabel3.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Left; - this.toolStripStatusLabel3.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.toolStripStatusLabel3.Name = "toolStripStatusLabel3"; - this.toolStripStatusLabel3.Size = new System.Drawing.Size(39, 21); - this.toolStripStatusLabel3.Text = "端口:"; - // - // stripPort - // - this.stripPort.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.stripPort.Name = "stripPort"; - this.stripPort.Size = new System.Drawing.Size(36, 21); - this.stripPort.Text = "5200"; - // - // toolStripStatusLabel6 - // - this.toolStripStatusLabel6.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Left; - this.toolStripStatusLabel6.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.toolStripStatusLabel6.Name = "toolStripStatusLabel6"; - this.toolStripStatusLabel6.Size = new System.Drawing.Size(63, 21); - this.toolStripStatusLabel6.Text = "主机数量:"; - // - // stripConnectedNum - // - this.stripConnectedNum.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.stripConnectedNum.Name = "stripConnectedNum"; - this.stripConnectedNum.Size = new System.Drawing.Size(14, 21); - this.stripConnectedNum.Text = "0"; - // - // toolStrip1 - // - this.toolStrip1.BackColor = System.Drawing.Color.White; - this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden; - this.toolStrip1.ImageScalingSize = new System.Drawing.Size(20, 20); - this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.toolStripButton10, - this.toolStripButton9, - this.toolStripSeparator5, - this.toolStripButton7, - this.toolStripButton6, - this.toolStripButton14, - this.toolStripButton8}); - this.toolStrip1.Location = new System.Drawing.Point(0, 25); - this.toolStrip1.Name = "toolStrip1"; - this.toolStrip1.Size = new System.Drawing.Size(1107, 56); - this.toolStrip1.TabIndex = 6; - this.toolStrip1.Text = "toolStrip1"; - // - // toolStripButton10 - // - this.toolStripButton10.Image = global::SiMay.RemoteMonitor.Properties.Resources.Syset; - this.toolStripButton10.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.toolStripButton10.ImageTransparentColor = System.Drawing.Color.Magenta; - this.toolStripButton10.Name = "toolStripButton10"; - this.toolStripButton10.Size = new System.Drawing.Size(64, 53); - this.toolStripButton10.Text = "系统设置"; - this.toolStripButton10.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; - this.toolStripButton10.Click += new System.EventHandler(this.toolStripButton10_Click); - // - // toolStripButton9 - // - this.toolStripButton9.Image = global::SiMay.RemoteMonitor.Properties.Resources.CreateService; - this.toolStripButton9.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.toolStripButton9.ImageTransparentColor = System.Drawing.Color.Magenta; - this.toolStripButton9.Name = "toolStripButton9"; - this.toolStripButton9.Size = new System.Drawing.Size(64, 53); - this.toolStripButton9.Text = "创建客户"; - this.toolStripButton9.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; - this.toolStripButton9.Click += new System.EventHandler(this.toolStripButton9_Click); - // - // toolStripSeparator5 - // - this.toolStripSeparator5.Name = "toolStripSeparator5"; - this.toolStripSeparator5.Size = new System.Drawing.Size(6, 56); - // - // toolStripButton7 - // - this.toolStripButton7.Image = global::SiMay.RemoteMonitor.Properties.Resources.Abort; - this.toolStripButton7.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.toolStripButton7.ImageTransparentColor = System.Drawing.Color.Magenta; - this.toolStripButton7.Name = "toolStripButton7"; - this.toolStripButton7.Size = new System.Drawing.Size(64, 53); - this.toolStripButton7.Text = "消息通知"; - this.toolStripButton7.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; - this.toolStripButton7.Click += new System.EventHandler(this.toolStripButton7_Click); - // - // toolStripButton6 - // - this.toolStripButton6.Image = global::SiMay.RemoteMonitor.Properties.Resources.Downloadexc; - this.toolStripButton6.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.toolStripButton6.ImageTransparentColor = System.Drawing.Color.Magenta; - this.toolStripButton6.Name = "toolStripButton6"; - this.toolStripButton6.Size = new System.Drawing.Size(64, 53); - this.toolStripButton6.Text = "下载执行"; - this.toolStripButton6.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; - this.toolStripButton6.Click += new System.EventHandler(this.toolStripButton6_Click); - // - // toolStripButton14 - // - this.toolStripButton14.Image = global::SiMay.RemoteMonitor.Properties.Resources.Exit; - this.toolStripButton14.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.toolStripButton14.ImageTransparentColor = System.Drawing.Color.Magenta; - this.toolStripButton14.Name = "toolStripButton14"; - this.toolStripButton14.Size = new System.Drawing.Size(64, 53); - this.toolStripButton14.Text = "关闭屏幕"; - this.toolStripButton14.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; - this.toolStripButton14.Click += new System.EventHandler(this.toolStripButton14_Click); - // - // toolStripButton8 - // - this.toolStripButton8.Image = global::SiMay.RemoteMonitor.Properties.Resources.Exit; - this.toolStripButton8.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.toolStripButton8.ImageTransparentColor = System.Drawing.Color.Magenta; - this.toolStripButton8.Name = "toolStripButton8"; - this.toolStripButton8.Size = new System.Drawing.Size(64, 53); - this.toolStripButton8.Text = "卸载程序"; - this.toolStripButton8.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; - this.toolStripButton8.Click += new System.EventHandler(this.toolStripButton8_Click); - // - // menuStrip1 - // - this.menuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20); - this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.系统设置ToolStripMenuItem, - this.创建客户ToolStripMenuItem, - this.查看ToolStripMenuItem, - this.锁定ToolStripMenuItem, - this.toolStripMenuItem3}); - this.menuStrip1.Location = new System.Drawing.Point(0, 0); - this.menuStrip1.Name = "menuStrip1"; - this.menuStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional; - this.menuStrip1.Size = new System.Drawing.Size(1107, 25); - this.menuStrip1.TabIndex = 0; - this.menuStrip1.Text = "menuStrip1"; - // - // 系统设置ToolStripMenuItem - // - this.系统设置ToolStripMenuItem.Name = "系统设置ToolStripMenuItem"; - this.系统设置ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F))); - this.系统设置ToolStripMenuItem.Size = new System.Drawing.Size(82, 21); - this.系统设置ToolStripMenuItem.Text = "系统设置(&F)"; - this.系统设置ToolStripMenuItem.Click += new System.EventHandler(this.SystemOption); - // - // 创建客户ToolStripMenuItem - // - this.创建客户ToolStripMenuItem.Name = "创建客户ToolStripMenuItem"; - this.创建客户ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.E))); - this.创建客户ToolStripMenuItem.Size = new System.Drawing.Size(83, 21); - this.创建客户ToolStripMenuItem.Text = "创建客户(&E)"; - this.创建客户ToolStripMenuItem.Click += new System.EventHandler(this.CreateService); - // - // 查看ToolStripMenuItem - // - this.查看ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.ToolStripMenuItem, - this.statusToolStripMenuItem, - this.onlineToolStripMenuItem, - this.toolStripSeparator7, - this.桌面记录查看ToolStripMenuItem}); - this.查看ToolStripMenuItem.Name = "查看ToolStripMenuItem"; - this.查看ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V))); - this.查看ToolStripMenuItem.Size = new System.Drawing.Size(84, 21); - this.查看ToolStripMenuItem.Text = "视图查看(&V)"; - // - // ToolStripMenuItem - // - this.ToolStripMenuItem.Checked = true; - this.ToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; - this.ToolStripMenuItem.Name = "ToolStripMenuItem"; - this.ToolStripMenuItem.Size = new System.Drawing.Size(148, 22); - this.ToolStripMenuItem.Text = "工具栏"; - this.ToolStripMenuItem.Click += new System.EventHandler(this.ToolStripMenuItem_Click); - // - // statusToolStripMenuItem - // - this.statusToolStripMenuItem.Checked = true; - this.statusToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; - this.statusToolStripMenuItem.Name = "statusToolStripMenuItem"; - this.statusToolStripMenuItem.Size = new System.Drawing.Size(148, 22); - this.statusToolStripMenuItem.Text = "状态栏"; - this.statusToolStripMenuItem.Click += new System.EventHandler(this.statusToolStripMenuItem_Click); - // - // onlineToolStripMenuItem - // - this.onlineToolStripMenuItem.Checked = true; - this.onlineToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; - this.onlineToolStripMenuItem.Name = "onlineToolStripMenuItem"; - this.onlineToolStripMenuItem.Size = new System.Drawing.Size(148, 22); - this.onlineToolStripMenuItem.Text = "选项栏"; - this.onlineToolStripMenuItem.Click += new System.EventHandler(this.onlineToolStripMenuItem_Click); - // - // toolStripSeparator7 - // - this.toolStripSeparator7.Name = "toolStripSeparator7"; - this.toolStripSeparator7.Size = new System.Drawing.Size(145, 6); - // - // 桌面记录查看ToolStripMenuItem - // - this.桌面记录查看ToolStripMenuItem.Name = "桌面记录查看ToolStripMenuItem"; - this.桌面记录查看ToolStripMenuItem.Size = new System.Drawing.Size(148, 22); - this.桌面记录查看ToolStripMenuItem.Text = "桌面记录查看"; - this.桌面记录查看ToolStripMenuItem.Click += new System.EventHandler(this.viewReviewToolStripMenuItem_Click); - // - // 锁定ToolStripMenuItem - // - this.锁定ToolStripMenuItem.Name = "锁定ToolStripMenuItem"; - this.锁定ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.G))); - this.锁定ToolStripMenuItem.Size = new System.Drawing.Size(61, 21); - this.锁定ToolStripMenuItem.Text = "锁定(&G)"; - this.锁定ToolStripMenuItem.Click += new System.EventHandler(this.lockToolStripMenuItem_Click); - // - // toolStripMenuItem3 - // - this.toolStripMenuItem3.Name = "toolStripMenuItem3"; - this.toolStripMenuItem3.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.H))); - this.toolStripMenuItem3.Size = new System.Drawing.Size(85, 21); - this.toolStripMenuItem3.Text = "关于程序(&H)"; - this.toolStripMenuItem3.Click += new System.EventHandler(this.About); - // - // MainForm - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(1107, 754); - this.Controls.Add(this.splitContainer1); - this.Controls.Add(this.statusStrip1); - this.Controls.Add(this.toolStrip1); - this.Controls.Add(this.menuStrip1); - this.MainMenuStrip = this.menuStrip1; - this.Name = "MainForm"; - this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; - this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainApplication_FormClosing); - this.Load += new System.EventHandler(this.MainApplication_Load); - this.CmdContext.ResumeLayout(false); - this.logsContext.ResumeLayout(false); - this.splitContainer1.Panel1.ResumeLayout(false); - this.splitContainer1.Panel2.ResumeLayout(false); - ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit(); - this.splitContainer1.ResumeLayout(false); - this.panel1.ResumeLayout(false); - this.panel1.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.deskrefreshTimeSpan)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.rowtrackBar)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.columntrackBar)).EndInit(); - this.splitContainer2.Panel1.ResumeLayout(false); - this.splitContainer2.Panel2.ResumeLayout(false); - ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit(); - this.splitContainer2.ResumeLayout(false); - this.tabControl2.ResumeLayout(false); - this.tabPage2.ResumeLayout(false); - this.tabControl1.ResumeLayout(false); - this.tabPage1.ResumeLayout(false); - this.statusStrip1.ResumeLayout(false); - this.statusStrip1.PerformLayout(); - this.toolStrip1.ResumeLayout(false); - this.toolStrip1.PerformLayout(); - this.menuStrip1.ResumeLayout(false); - this.menuStrip1.PerformLayout(); - this.ResumeLayout(false); - this.PerformLayout(); - + this.components = new System.ComponentModel.Container(); + this.CmdContext = new System.Windows.Forms.ContextMenuStrip(this.components); + this.toolStripMenuItem11 = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItem6 = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); + this.发送信息ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.备注更改ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItem7 = new System.Windows.Forms.ToolStripMenuItem(); + this.会话管理ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.updateClient = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItem8 = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator(); + this.关闭计算机ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.重启计算机ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); + this.开机启动ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.取消自启动ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.隐藏服务端ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator(); + this.卸载控制端ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator(); + this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItem5 = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); + this.选择全部ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.取消选择ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.logsContext = new System.Windows.Forms.ContextMenuStrip(this.components); + this.复制日志ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.删除日志ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.清空日志ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); + this.splitContainer1 = new System.Windows.Forms.SplitContainer(); + this.tabControl1 = new System.Windows.Forms.TabControl(); + this.tabPage3 = new System.Windows.Forms.TabPage(); + this.label3 = new System.Windows.Forms.Label(); + this.groupBox = new System.Windows.Forms.ComboBox(); + this.button2 = new System.Windows.Forms.Button(); + this.label2 = new System.Windows.Forms.Label(); + this.columntrackBar = new System.Windows.Forms.TrackBar(); + this.deskrefreshTimeSpan = new System.Windows.Forms.NumericUpDown(); + this.label1 = new System.Windows.Forms.Label(); + this.linkLabel1 = new System.Windows.Forms.LinkLabel(); + this.button1 = new System.Windows.Forms.Button(); + this.rowtrackBar = new System.Windows.Forms.TrackBar(); + this.column = new System.Windows.Forms.Label(); + this.row = new System.Windows.Forms.Label(); + this.fsd = new System.Windows.Forms.Label(); + this.desktopViewLayout = new System.Windows.Forms.FlowLayoutPanel(); + this.tabPage1 = new System.Windows.Forms.TabPage(); + this.tabControl2 = new System.Windows.Forms.TabControl(); + this.tabPage2 = new System.Windows.Forms.TabPage(); + this.statusStrip1 = new System.Windows.Forms.StatusStrip(); + this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel(); + this.stripHost = new System.Windows.Forms.ToolStripStatusLabel(); + this.toolStripStatusLabel5 = new System.Windows.Forms.ToolStripStatusLabel(); + this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel(); + this.struflow = new System.Windows.Forms.ToolStripStatusLabel(); + this.toolStripStatusLabel4 = new System.Windows.Forms.ToolStripStatusLabel(); + this.toolStripStatusLabel7 = new System.Windows.Forms.ToolStripStatusLabel(); + this.strdownflow = new System.Windows.Forms.ToolStripStatusLabel(); + this.toolStripStatusLabel8 = new System.Windows.Forms.ToolStripStatusLabel(); + this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel(); + this.stripPort = new System.Windows.Forms.ToolStripStatusLabel(); + this.toolStripStatusLabel6 = new System.Windows.Forms.ToolStripStatusLabel(); + this.stripConnectedNum = new System.Windows.Forms.ToolStripStatusLabel(); + this.toolStrip1 = new System.Windows.Forms.ToolStrip(); + this.toolStripButton10 = new System.Windows.Forms.ToolStripButton(); + this.toolStripButton9 = new System.Windows.Forms.ToolStripButton(); + this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator(); + this.toolStripButton7 = new System.Windows.Forms.ToolStripButton(); + this.toolStripButton6 = new System.Windows.Forms.ToolStripButton(); + this.toolStripButton14 = new System.Windows.Forms.ToolStripButton(); + this.toolStripButton8 = new System.Windows.Forms.ToolStripButton(); + this.menuStrip1 = new System.Windows.Forms.MenuStrip(); + this.系统设置ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.创建客户ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.查看ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.statusToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.onlineToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator(); + this.桌面记录查看ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.锁定ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem(); + this.onlineList = new SiMay.RemoteMonitor.UserControls.UListView(); + this.logList = new SiMay.RemoteMonitor.UserControls.UListView(); + this.CmdContext.SuspendLayout(); + this.logsContext.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); + this.splitContainer1.Panel1.SuspendLayout(); + this.splitContainer1.Panel2.SuspendLayout(); + this.splitContainer1.SuspendLayout(); + this.tabControl1.SuspendLayout(); + this.tabPage3.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.columntrackBar)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.deskrefreshTimeSpan)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.rowtrackBar)).BeginInit(); + this.tabPage1.SuspendLayout(); + this.tabControl2.SuspendLayout(); + this.tabPage2.SuspendLayout(); + this.statusStrip1.SuspendLayout(); + this.toolStrip1.SuspendLayout(); + this.menuStrip1.SuspendLayout(); + this.SuspendLayout(); + // + // CmdContext + // + this.CmdContext.ImageScalingSize = new System.Drawing.Size(20, 20); + this.CmdContext.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.toolStripMenuItem11, + this.toolStripMenuItem6, + this.toolStripMenuItem1, + this.发送信息ToolStripMenuItem, + this.备注更改ToolStripMenuItem, + this.toolStripMenuItem7, + this.会话管理ToolStripMenuItem, + this.toolStripSeparator4, + this.toolStripMenuItem4, + this.toolStripMenuItem5, + this.toolStripSeparator1, + this.选择全部ToolStripMenuItem, + this.取消选择ToolStripMenuItem}); + this.CmdContext.Name = "CmdContext"; + this.CmdContext.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional; + this.CmdContext.Size = new System.Drawing.Size(137, 258); + this.CmdContext.Opening += new System.ComponentModel.CancelEventHandler(this.CmdContext_Opening); + // + // toolStripMenuItem11 + // + this.toolStripMenuItem11.Name = "toolStripMenuItem11"; + this.toolStripMenuItem11.Size = new System.Drawing.Size(136, 22); + this.toolStripMenuItem11.Text = "桌面记录"; + this.toolStripMenuItem11.Click += new System.EventHandler(this.toolStripMenuItem11_Click); + // + // toolStripMenuItem6 + // + this.toolStripMenuItem6.Name = "toolStripMenuItem6"; + this.toolStripMenuItem6.Size = new System.Drawing.Size(136, 22); + this.toolStripMenuItem6.Text = "打开网页"; + this.toolStripMenuItem6.Click += new System.EventHandler(this.toolStripMenuItem6_Click_1); + // + // toolStripMenuItem1 + // + this.toolStripMenuItem1.Name = "toolStripMenuItem1"; + this.toolStripMenuItem1.Size = new System.Drawing.Size(136, 22); + this.toolStripMenuItem1.Text = "下载执行"; + this.toolStripMenuItem1.Click += new System.EventHandler(this.RemoteDownloadExecete); + // + // 发送信息ToolStripMenuItem + // + this.发送信息ToolStripMenuItem.Name = "发送信息ToolStripMenuItem"; + this.发送信息ToolStripMenuItem.Size = new System.Drawing.Size(136, 22); + this.发送信息ToolStripMenuItem.Text = "发送信息"; + this.发送信息ToolStripMenuItem.Click += new System.EventHandler(this.SendMessageBox); + // + // 备注更改ToolStripMenuItem + // + this.备注更改ToolStripMenuItem.Name = "备注更改ToolStripMenuItem"; + this.备注更改ToolStripMenuItem.Size = new System.Drawing.Size(136, 22); + this.备注更改ToolStripMenuItem.Text = "备注更改"; + this.备注更改ToolStripMenuItem.Click += new System.EventHandler(this.ModifyRemark); + // + // toolStripMenuItem7 + // + this.toolStripMenuItem7.Name = "toolStripMenuItem7"; + this.toolStripMenuItem7.Size = new System.Drawing.Size(136, 22); + this.toolStripMenuItem7.Text = "分组更改"; + this.toolStripMenuItem7.Click += new System.EventHandler(this.ToolStripMenuItem7_Click); + // + // 会话管理ToolStripMenuItem + // + this.会话管理ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.updateClient, + this.toolStripMenuItem8, + this.toolStripSeparator6, + this.关闭计算机ToolStripMenuItem, + this.重启计算机ToolStripMenuItem, + this.toolStripSeparator2, + this.开机启动ToolStripMenuItem, + this.取消自启动ToolStripMenuItem, + this.隐藏服务端ToolStripMenuItem, + this.toolStripMenuItem2, + this.toolStripSeparator3, + this.卸载控制端ToolStripMenuItem}); + this.会话管理ToolStripMenuItem.Name = "会话管理ToolStripMenuItem"; + this.会话管理ToolStripMenuItem.Size = new System.Drawing.Size(136, 22); + this.会话管理ToolStripMenuItem.Text = "会话管理"; + // + // updateClient + // + this.updateClient.Name = "updateClient"; + this.updateClient.Size = new System.Drawing.Size(136, 22); + this.updateClient.Text = "远程更新"; + this.updateClient.Click += new System.EventHandler(this.UpdateClient_Click); + // + // toolStripMenuItem8 + // + this.toolStripMenuItem8.Name = "toolStripMenuItem8"; + this.toolStripMenuItem8.Size = new System.Drawing.Size(136, 22); + this.toolStripMenuItem8.Text = "重新载入"; + this.toolStripMenuItem8.Click += new System.EventHandler(this.ToolStripMenuItem8_Click); + // + // toolStripSeparator6 + // + this.toolStripSeparator6.Name = "toolStripSeparator6"; + this.toolStripSeparator6.Size = new System.Drawing.Size(133, 6); + // + // 关闭计算机ToolStripMenuItem + // + this.关闭计算机ToolStripMenuItem.Name = "关闭计算机ToolStripMenuItem"; + this.关闭计算机ToolStripMenuItem.Size = new System.Drawing.Size(136, 22); + this.关闭计算机ToolStripMenuItem.Text = "关闭计算机"; + this.关闭计算机ToolStripMenuItem.Click += new System.EventHandler(this.RemoteShutdown); + // + // 重启计算机ToolStripMenuItem + // + this.重启计算机ToolStripMenuItem.Name = "重启计算机ToolStripMenuItem"; + this.重启计算机ToolStripMenuItem.Size = new System.Drawing.Size(136, 22); + this.重启计算机ToolStripMenuItem.Text = "重启计算机"; + this.重启计算机ToolStripMenuItem.Click += new System.EventHandler(this.RemoteReboot); + // + // toolStripSeparator2 + // + this.toolStripSeparator2.Name = "toolStripSeparator2"; + this.toolStripSeparator2.Size = new System.Drawing.Size(133, 6); + // + // 开机启动ToolStripMenuItem + // + this.开机启动ToolStripMenuItem.Name = "开机启动ToolStripMenuItem"; + this.开机启动ToolStripMenuItem.Size = new System.Drawing.Size(136, 22); + this.开机启动ToolStripMenuItem.Text = "注册表启动"; + this.开机启动ToolStripMenuItem.Click += new System.EventHandler(this.RemoteStartup); + // + // 取消自启动ToolStripMenuItem + // + this.取消自启动ToolStripMenuItem.Name = "取消自启动ToolStripMenuItem"; + this.取消自启动ToolStripMenuItem.Size = new System.Drawing.Size(136, 22); + this.取消自启动ToolStripMenuItem.Text = "取消自启动"; + this.取消自启动ToolStripMenuItem.Click += new System.EventHandler(this.RemoteUnStarup); + // + // 隐藏服务端ToolStripMenuItem + // + this.隐藏服务端ToolStripMenuItem.Name = "隐藏服务端ToolStripMenuItem"; + this.隐藏服务端ToolStripMenuItem.Size = new System.Drawing.Size(136, 22); + this.隐藏服务端ToolStripMenuItem.Text = "隐藏服务端"; + this.隐藏服务端ToolStripMenuItem.Click += new System.EventHandler(this.RemoteHideServiceFile); + // + // toolStripMenuItem2 + // + this.toolStripMenuItem2.Name = "toolStripMenuItem2"; + this.toolStripMenuItem2.Size = new System.Drawing.Size(136, 22); + this.toolStripMenuItem2.Text = "显示服务端"; + this.toolStripMenuItem2.Click += new System.EventHandler(this.ToolStripMenuItem2_Click); + // + // toolStripSeparator3 + // + this.toolStripSeparator3.Name = "toolStripSeparator3"; + this.toolStripSeparator3.Size = new System.Drawing.Size(133, 6); + // + // 卸载控制端ToolStripMenuItem + // + this.卸载控制端ToolStripMenuItem.Name = "卸载控制端ToolStripMenuItem"; + this.卸载控制端ToolStripMenuItem.Size = new System.Drawing.Size(136, 22); + this.卸载控制端ToolStripMenuItem.Text = "卸载服务端"; + this.卸载控制端ToolStripMenuItem.Click += new System.EventHandler(this.UninstallService); + // + // toolStripSeparator4 + // + this.toolStripSeparator4.Name = "toolStripSeparator4"; + this.toolStripSeparator4.Size = new System.Drawing.Size(133, 6); + // + // toolStripMenuItem4 + // + this.toolStripMenuItem4.Name = "toolStripMenuItem4"; + this.toolStripMenuItem4.Size = new System.Drawing.Size(136, 22); + this.toolStripMenuItem4.Text = "开启屏幕墙"; + this.toolStripMenuItem4.Click += new System.EventHandler(this.toolStripMenuItem4_Click); + // + // toolStripMenuItem5 + // + this.toolStripMenuItem5.Name = "toolStripMenuItem5"; + this.toolStripMenuItem5.Size = new System.Drawing.Size(136, 22); + this.toolStripMenuItem5.Text = "关闭屏幕墙"; + this.toolStripMenuItem5.Click += new System.EventHandler(this.toolStripMenuItem5_Click); + // + // toolStripSeparator1 + // + this.toolStripSeparator1.Name = "toolStripSeparator1"; + this.toolStripSeparator1.Size = new System.Drawing.Size(133, 6); + // + // 选择全部ToolStripMenuItem + // + this.选择全部ToolStripMenuItem.Name = "选择全部ToolStripMenuItem"; + this.选择全部ToolStripMenuItem.Size = new System.Drawing.Size(136, 22); + this.选择全部ToolStripMenuItem.Text = "选择全部"; + this.选择全部ToolStripMenuItem.Click += new System.EventHandler(this.OnlineList_OnSelected); + // + // 取消选择ToolStripMenuItem + // + this.取消选择ToolStripMenuItem.Name = "取消选择ToolStripMenuItem"; + this.取消选择ToolStripMenuItem.Size = new System.Drawing.Size(136, 22); + this.取消选择ToolStripMenuItem.Text = "取消选择"; + this.取消选择ToolStripMenuItem.Click += new System.EventHandler(this.OnileList_OnUnSelected); + // + // logsContext + // + this.logsContext.ImageScalingSize = new System.Drawing.Size(20, 20); + this.logsContext.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.复制日志ToolStripMenuItem, + this.删除日志ToolStripMenuItem, + this.清空日志ToolStripMenuItem1}); + this.logsContext.Name = "logsContext"; + this.logsContext.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional; + this.logsContext.Size = new System.Drawing.Size(125, 70); + // + // 复制日志ToolStripMenuItem + // + this.复制日志ToolStripMenuItem.Name = "复制日志ToolStripMenuItem"; + this.复制日志ToolStripMenuItem.Size = new System.Drawing.Size(124, 22); + this.复制日志ToolStripMenuItem.Text = "复制日志"; + this.复制日志ToolStripMenuItem.Click += new System.EventHandler(this.CopyRuningLog); + // + // 删除日志ToolStripMenuItem + // + this.删除日志ToolStripMenuItem.Name = "删除日志ToolStripMenuItem"; + this.删除日志ToolStripMenuItem.Size = new System.Drawing.Size(124, 22); + this.删除日志ToolStripMenuItem.Text = "删除日志"; + this.删除日志ToolStripMenuItem.Click += new System.EventHandler(this.DeleteRuningLog); + // + // 清空日志ToolStripMenuItem1 + // + this.清空日志ToolStripMenuItem1.Name = "清空日志ToolStripMenuItem1"; + this.清空日志ToolStripMenuItem1.Size = new System.Drawing.Size(124, 22); + this.清空日志ToolStripMenuItem1.Text = "清空日志"; + this.清空日志ToolStripMenuItem1.Click += new System.EventHandler(this.ClearRuningLog); + // + // splitContainer1 + // + this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; + this.splitContainer1.Location = new System.Drawing.Point(0, 81); + this.splitContainer1.Name = "splitContainer1"; + this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal; + // + // splitContainer1.Panel1 + // + this.splitContainer1.Panel1.Controls.Add(this.tabControl1); + // + // splitContainer1.Panel2 + // + this.splitContainer1.Panel2.Controls.Add(this.tabControl2); + this.splitContainer1.Size = new System.Drawing.Size(1154, 642); + this.splitContainer1.SplitterDistance = 465; + this.splitContainer1.SplitterWidth = 1; + this.splitContainer1.TabIndex = 7; + // + // tabControl1 + // + this.tabControl1.Alignment = System.Windows.Forms.TabAlignment.Bottom; + this.tabControl1.Controls.Add(this.tabPage3); + this.tabControl1.Controls.Add(this.tabPage1); + this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill; + this.tabControl1.Location = new System.Drawing.Point(0, 0); + this.tabControl1.Multiline = true; + this.tabControl1.Name = "tabControl1"; + this.tabControl1.SelectedIndex = 0; + this.tabControl1.Size = new System.Drawing.Size(1154, 465); + this.tabControl1.SizeMode = System.Windows.Forms.TabSizeMode.Fixed; + this.tabControl1.TabIndex = 0; + // + // tabPage3 + // + this.tabPage3.BackColor = System.Drawing.SystemColors.Control; + this.tabPage3.Controls.Add(this.label3); + this.tabPage3.Controls.Add(this.groupBox); + this.tabPage3.Controls.Add(this.button2); + this.tabPage3.Controls.Add(this.label2); + this.tabPage3.Controls.Add(this.columntrackBar); + this.tabPage3.Controls.Add(this.deskrefreshTimeSpan); + this.tabPage3.Controls.Add(this.label1); + this.tabPage3.Controls.Add(this.linkLabel1); + this.tabPage3.Controls.Add(this.button1); + this.tabPage3.Controls.Add(this.rowtrackBar); + this.tabPage3.Controls.Add(this.column); + this.tabPage3.Controls.Add(this.row); + this.tabPage3.Controls.Add(this.fsd); + this.tabPage3.Controls.Add(this.desktopViewLayout); + this.tabPage3.Location = new System.Drawing.Point(4, 4); + this.tabPage3.Name = "tabPage3"; + this.tabPage3.Padding = new System.Windows.Forms.Padding(3); + this.tabPage3.Size = new System.Drawing.Size(1146, 439); + this.tabPage3.TabIndex = 3; + this.tabPage3.Text = "桌面视图"; + this.tabPage3.Click += new System.EventHandler(this.tabPage3_Click); + // + // label3 + // + this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.label3.AutoSize = true; + this.label3.Location = new System.Drawing.Point(519, 419); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(35, 12); + this.label3.TabIndex = 12; + this.label3.Text = "分组:"; + // + // groupBox + // + this.groupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.groupBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.groupBox.FlatStyle = System.Windows.Forms.FlatStyle.System; + this.groupBox.FormattingEnabled = true; + this.groupBox.Items.AddRange(new object[] { + "全部"}); + this.groupBox.Location = new System.Drawing.Point(555, 415); + this.groupBox.Name = "groupBox"; + this.groupBox.Size = new System.Drawing.Size(115, 20); + this.groupBox.TabIndex = 11; + this.groupBox.SelectedIndexChanged += new System.EventHandler(this.GroupBox_SelectedIndexChanged); + // + // button2 + // + this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.button2.Location = new System.Drawing.Point(65, 416); + this.button2.Name = "button2"; + this.button2.Size = new System.Drawing.Size(56, 20); + this.button2.TabIndex = 8; + this.button2.Text = "反选"; + this.button2.UseVisualStyleBackColor = true; + this.button2.Click += new System.EventHandler(this.button2_Click); + // + // label2 + // + this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.label2.AutoSize = true; + this.label2.Location = new System.Drawing.Point(676, 420); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(59, 12); + this.label2.TabIndex = 10; + this.label2.Text = "刷新间隔:"; + // + // columntrackBar + // + this.columntrackBar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.columntrackBar.AutoSize = false; + this.columntrackBar.Location = new System.Drawing.Point(968, 419); + this.columntrackBar.Maximum = 1000; + this.columntrackBar.Minimum = 1; + this.columntrackBar.Name = "columntrackBar"; + this.columntrackBar.Size = new System.Drawing.Size(90, 17); + this.columntrackBar.TabIndex = 0; + this.columntrackBar.TickStyle = System.Windows.Forms.TickStyle.None; + this.columntrackBar.Value = 150; + this.columntrackBar.Scroll += new System.EventHandler(this.ColumntrackBar_Scroll); + // + // deskrefreshTimeSpan + // + this.deskrefreshTimeSpan.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.deskrefreshTimeSpan.Increment = new decimal(new int[] { + 100, + 0, + 0, + 0}); + this.deskrefreshTimeSpan.Location = new System.Drawing.Point(736, 416); + this.deskrefreshTimeSpan.Maximum = new decimal(new int[] { + 10000, + 0, + 0, + 0}); + this.deskrefreshTimeSpan.Minimum = new decimal(new int[] { + 300, + 0, + 0, + 0}); + this.deskrefreshTimeSpan.Name = "deskrefreshTimeSpan"; + this.deskrefreshTimeSpan.ReadOnly = true; + this.deskrefreshTimeSpan.Size = new System.Drawing.Size(47, 21); + this.deskrefreshTimeSpan.TabIndex = 9; + this.deskrefreshTimeSpan.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + this.deskrefreshTimeSpan.Value = new decimal(new int[] { + 300, + 0, + 0, + 0}); + // + // label1 + // + this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.label1.AutoSize = true; + this.label1.Location = new System.Drawing.Point(939, 420); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(35, 12); + this.label1.TabIndex = 1; + this.label1.Text = "高度:"; + // + // linkLabel1 + // + this.linkLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.linkLabel1.AutoSize = true; + this.linkLabel1.Location = new System.Drawing.Point(1091, 420); + this.linkLabel1.Name = "linkLabel1"; + this.linkLabel1.Size = new System.Drawing.Size(53, 12); + this.linkLabel1.TabIndex = 2; + this.linkLabel1.TabStop = true; + this.linkLabel1.Text = "保存设置"; + this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked); + // + // button1 + // + this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.button1.Location = new System.Drawing.Point(3, 416); + this.button1.Name = "button1"; + this.button1.Size = new System.Drawing.Size(56, 20); + this.button1.TabIndex = 7; + this.button1.Text = "全选"; + this.button1.UseVisualStyleBackColor = true; + this.button1.Click += new System.EventHandler(this.button1_Click); + // + // rowtrackBar + // + this.rowtrackBar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.rowtrackBar.AutoSize = false; + this.rowtrackBar.Location = new System.Drawing.Point(821, 419); + this.rowtrackBar.Maximum = 1000; + this.rowtrackBar.Minimum = 1; + this.rowtrackBar.Name = "rowtrackBar"; + this.rowtrackBar.Size = new System.Drawing.Size(90, 17); + this.rowtrackBar.TabIndex = 3; + this.rowtrackBar.TickStyle = System.Windows.Forms.TickStyle.None; + this.rowtrackBar.Value = 170; + this.rowtrackBar.Scroll += new System.EventHandler(this.RowtrackBar_Scroll); + // + // column + // + this.column.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.column.AutoSize = true; + this.column.Location = new System.Drawing.Point(1062, 420); + this.column.Name = "column"; + this.column.Size = new System.Drawing.Size(23, 12); + this.column.TabIndex = 6; + this.column.Text = "150"; + // + // row + // + this.row.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.row.AutoSize = true; + this.row.Location = new System.Drawing.Point(913, 420); + this.row.Name = "row"; + this.row.Size = new System.Drawing.Size(23, 12); + this.row.TabIndex = 4; + this.row.Text = "150"; + // + // fsd + // + this.fsd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.fsd.AutoSize = true; + this.fsd.Location = new System.Drawing.Point(789, 420); + this.fsd.Name = "fsd"; + this.fsd.Size = new System.Drawing.Size(35, 12); + this.fsd.TabIndex = 5; + this.fsd.Text = "宽度:"; + // + // desktopViewLayout + // + this.desktopViewLayout.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.desktopViewLayout.AutoScroll = true; + this.desktopViewLayout.BackColor = System.Drawing.SystemColors.Control; + this.desktopViewLayout.Location = new System.Drawing.Point(3, 3); + this.desktopViewLayout.Margin = new System.Windows.Forms.Padding(3, 3, 3, 10); + this.desktopViewLayout.Name = "desktopViewLayout"; + this.desktopViewLayout.Size = new System.Drawing.Size(1140, 411); + this.desktopViewLayout.TabIndex = 3; + // + // tabPage1 + // + this.tabPage1.Controls.Add(this.onlineList); + this.tabPage1.Location = new System.Drawing.Point(4, 4); + this.tabPage1.Name = "tabPage1"; + this.tabPage1.Padding = new System.Windows.Forms.Padding(3); + this.tabPage1.Size = new System.Drawing.Size(1254, 417); + this.tabPage1.TabIndex = 2; + this.tabPage1.Text = "列表视图"; + this.tabPage1.UseVisualStyleBackColor = true; + this.tabPage1.Click += new System.EventHandler(this.tabPage1_Click); + // + // tabControl2 + // + this.tabControl2.Alignment = System.Windows.Forms.TabAlignment.Bottom; + this.tabControl2.Controls.Add(this.tabPage2); + this.tabControl2.Dock = System.Windows.Forms.DockStyle.Fill; + this.tabControl2.Location = new System.Drawing.Point(0, 0); + this.tabControl2.Name = "tabControl2"; + this.tabControl2.SelectedIndex = 0; + this.tabControl2.Size = new System.Drawing.Size(1154, 176); + this.tabControl2.SizeMode = System.Windows.Forms.TabSizeMode.Fixed; + this.tabControl2.TabIndex = 1; + // + // tabPage2 + // + this.tabPage2.Controls.Add(this.logList); + this.tabPage2.Location = new System.Drawing.Point(4, 4); + this.tabPage2.Name = "tabPage2"; + this.tabPage2.Padding = new System.Windows.Forms.Padding(3); + this.tabPage2.Size = new System.Drawing.Size(1146, 150); + this.tabPage2.TabIndex = 2; + this.tabPage2.Text = "运行日志"; + this.tabPage2.UseVisualStyleBackColor = true; + // + // statusStrip1 + // + this.statusStrip1.ImageScalingSize = new System.Drawing.Size(20, 20); + this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.toolStripStatusLabel1, + this.stripHost, + this.toolStripStatusLabel5, + this.toolStripStatusLabel2, + this.struflow, + this.toolStripStatusLabel4, + this.toolStripStatusLabel7, + this.strdownflow, + this.toolStripStatusLabel8, + this.toolStripStatusLabel3, + this.stripPort, + this.toolStripStatusLabel6, + this.stripConnectedNum}); + this.statusStrip1.Location = new System.Drawing.Point(0, 723); + this.statusStrip1.Name = "statusStrip1"; + this.statusStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode; + this.statusStrip1.Size = new System.Drawing.Size(1154, 26); + this.statusStrip1.TabIndex = 2; + this.statusStrip1.Text = "statusStrip1"; + // + // toolStripStatusLabel1 + // + this.toolStripStatusLabel1.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.toolStripStatusLabel1.Name = "toolStripStatusLabel1"; + this.toolStripStatusLabel1.Size = new System.Drawing.Size(71, 21); + this.toolStripStatusLabel1.Text = "服务器地址:"; + // + // stripHost + // + this.stripHost.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.stripHost.Name = "stripHost"; + this.stripHost.Size = new System.Drawing.Size(45, 21); + this.stripHost.Text = "0.0.0.0"; + // + // toolStripStatusLabel5 + // + this.toolStripStatusLabel5.Name = "toolStripStatusLabel5"; + this.toolStripStatusLabel5.Size = new System.Drawing.Size(665, 21); + this.toolStripStatusLabel5.Spring = true; + // + // toolStripStatusLabel2 + // + this.toolStripStatusLabel2.Name = "toolStripStatusLabel2"; + this.toolStripStatusLabel2.Size = new System.Drawing.Size(35, 21); + this.toolStripStatusLabel2.Text = "上传:"; + // + // struflow + // + this.struflow.Name = "struflow"; + this.struflow.Size = new System.Drawing.Size(32, 21); + this.struflow.Text = "0.00"; + // + // toolStripStatusLabel4 + // + this.toolStripStatusLabel4.Name = "toolStripStatusLabel4"; + this.toolStripStatusLabel4.Size = new System.Drawing.Size(36, 21); + this.toolStripStatusLabel4.Text = "KB/S"; + // + // toolStripStatusLabel7 + // + this.toolStripStatusLabel7.Name = "toolStripStatusLabel7"; + this.toolStripStatusLabel7.Size = new System.Drawing.Size(35, 21); + this.toolStripStatusLabel7.Text = "下传:"; + // + // strdownflow + // + this.strdownflow.Name = "strdownflow"; + this.strdownflow.Size = new System.Drawing.Size(32, 21); + this.strdownflow.Text = "0.00"; + // + // toolStripStatusLabel8 + // + this.toolStripStatusLabel8.Name = "toolStripStatusLabel8"; + this.toolStripStatusLabel8.Size = new System.Drawing.Size(36, 21); + this.toolStripStatusLabel8.Text = "KB/S"; + // + // toolStripStatusLabel3 + // + this.toolStripStatusLabel3.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Left; + this.toolStripStatusLabel3.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.toolStripStatusLabel3.Name = "toolStripStatusLabel3"; + this.toolStripStatusLabel3.Size = new System.Drawing.Size(39, 21); + this.toolStripStatusLabel3.Text = "端口:"; + // + // stripPort + // + this.stripPort.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.stripPort.Name = "stripPort"; + this.stripPort.Size = new System.Drawing.Size(36, 21); + this.stripPort.Text = "5200"; + // + // toolStripStatusLabel6 + // + this.toolStripStatusLabel6.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Left; + this.toolStripStatusLabel6.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.toolStripStatusLabel6.Name = "toolStripStatusLabel6"; + this.toolStripStatusLabel6.Size = new System.Drawing.Size(63, 21); + this.toolStripStatusLabel6.Text = "主机数量:"; + // + // stripConnectedNum + // + this.stripConnectedNum.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.stripConnectedNum.Name = "stripConnectedNum"; + this.stripConnectedNum.Size = new System.Drawing.Size(14, 21); + this.stripConnectedNum.Text = "0"; + // + // toolStrip1 + // + this.toolStrip1.BackColor = System.Drawing.SystemColors.Window; + this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden; + this.toolStrip1.ImageScalingSize = new System.Drawing.Size(20, 20); + this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.toolStripButton10, + this.toolStripButton9, + this.toolStripSeparator5, + this.toolStripButton7, + this.toolStripButton6, + this.toolStripButton14, + this.toolStripButton8}); + this.toolStrip1.Location = new System.Drawing.Point(0, 25); + this.toolStrip1.Name = "toolStrip1"; + this.toolStrip1.Size = new System.Drawing.Size(1154, 56); + this.toolStrip1.TabIndex = 6; + this.toolStrip1.Text = "toolStrip1"; + // + // toolStripButton10 + // + this.toolStripButton10.Image = global::SiMay.RemoteMonitor.Properties.Resources.Syset; + this.toolStripButton10.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.toolStripButton10.ImageTransparentColor = System.Drawing.Color.Magenta; + this.toolStripButton10.Name = "toolStripButton10"; + this.toolStripButton10.Size = new System.Drawing.Size(64, 53); + this.toolStripButton10.Text = "系统设置"; + this.toolStripButton10.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; + this.toolStripButton10.Click += new System.EventHandler(this.toolStripButton10_Click); + // + // toolStripButton9 + // + this.toolStripButton9.Image = global::SiMay.RemoteMonitor.Properties.Resources.CreateService; + this.toolStripButton9.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.toolStripButton9.ImageTransparentColor = System.Drawing.Color.Magenta; + this.toolStripButton9.Name = "toolStripButton9"; + this.toolStripButton9.Size = new System.Drawing.Size(64, 53); + this.toolStripButton9.Text = "创建客户"; + this.toolStripButton9.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; + this.toolStripButton9.Click += new System.EventHandler(this.toolStripButton9_Click); + // + // toolStripSeparator5 + // + this.toolStripSeparator5.Name = "toolStripSeparator5"; + this.toolStripSeparator5.Size = new System.Drawing.Size(6, 56); + // + // toolStripButton7 + // + this.toolStripButton7.Image = global::SiMay.RemoteMonitor.Properties.Resources.Abort; + this.toolStripButton7.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.toolStripButton7.ImageTransparentColor = System.Drawing.Color.Magenta; + this.toolStripButton7.Name = "toolStripButton7"; + this.toolStripButton7.Size = new System.Drawing.Size(64, 53); + this.toolStripButton7.Text = "消息通知"; + this.toolStripButton7.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; + this.toolStripButton7.Click += new System.EventHandler(this.toolStripButton7_Click); + // + // toolStripButton6 + // + this.toolStripButton6.Image = global::SiMay.RemoteMonitor.Properties.Resources.Downloadexc; + this.toolStripButton6.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.toolStripButton6.ImageTransparentColor = System.Drawing.Color.Magenta; + this.toolStripButton6.Name = "toolStripButton6"; + this.toolStripButton6.Size = new System.Drawing.Size(64, 53); + this.toolStripButton6.Text = "下载执行"; + this.toolStripButton6.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; + this.toolStripButton6.Click += new System.EventHandler(this.toolStripButton6_Click); + // + // toolStripButton14 + // + this.toolStripButton14.Image = global::SiMay.RemoteMonitor.Properties.Resources.Exit; + this.toolStripButton14.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.toolStripButton14.ImageTransparentColor = System.Drawing.Color.Magenta; + this.toolStripButton14.Name = "toolStripButton14"; + this.toolStripButton14.Size = new System.Drawing.Size(64, 53); + this.toolStripButton14.Text = "关闭屏幕"; + this.toolStripButton14.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; + this.toolStripButton14.Click += new System.EventHandler(this.toolStripButton14_Click); + // + // toolStripButton8 + // + this.toolStripButton8.Image = global::SiMay.RemoteMonitor.Properties.Resources.Exit; + this.toolStripButton8.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.toolStripButton8.ImageTransparentColor = System.Drawing.Color.Magenta; + this.toolStripButton8.Name = "toolStripButton8"; + this.toolStripButton8.Size = new System.Drawing.Size(64, 53); + this.toolStripButton8.Text = "卸载程序"; + this.toolStripButton8.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; + this.toolStripButton8.Click += new System.EventHandler(this.toolStripButton8_Click); + // + // menuStrip1 + // + this.menuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20); + this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.系统设置ToolStripMenuItem, + this.创建客户ToolStripMenuItem, + this.查看ToolStripMenuItem, + this.锁定ToolStripMenuItem, + this.toolStripMenuItem3}); + this.menuStrip1.Location = new System.Drawing.Point(0, 0); + this.menuStrip1.Name = "menuStrip1"; + this.menuStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional; + this.menuStrip1.Size = new System.Drawing.Size(1154, 25); + this.menuStrip1.TabIndex = 0; + this.menuStrip1.Text = "menuStrip1"; + // + // 系统设置ToolStripMenuItem + // + this.系统设置ToolStripMenuItem.Name = "系统设置ToolStripMenuItem"; + this.系统设置ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F))); + this.系统设置ToolStripMenuItem.Size = new System.Drawing.Size(82, 21); + this.系统设置ToolStripMenuItem.Text = "系统设置(&F)"; + this.系统设置ToolStripMenuItem.Click += new System.EventHandler(this.SystemOption); + // + // 创建客户ToolStripMenuItem + // + this.创建客户ToolStripMenuItem.Name = "创建客户ToolStripMenuItem"; + this.创建客户ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.E))); + this.创建客户ToolStripMenuItem.Size = new System.Drawing.Size(83, 21); + this.创建客户ToolStripMenuItem.Text = "创建客户(&E)"; + this.创建客户ToolStripMenuItem.Click += new System.EventHandler(this.CreateService); + // + // 查看ToolStripMenuItem + // + this.查看ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ToolStripMenuItem, + this.statusToolStripMenuItem, + this.onlineToolStripMenuItem, + this.toolStripSeparator7, + this.桌面记录查看ToolStripMenuItem}); + this.查看ToolStripMenuItem.Name = "查看ToolStripMenuItem"; + this.查看ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V))); + this.查看ToolStripMenuItem.Size = new System.Drawing.Size(84, 21); + this.查看ToolStripMenuItem.Text = "视图查看(&V)"; + // + // ToolStripMenuItem + // + this.ToolStripMenuItem.Checked = true; + this.ToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; + this.ToolStripMenuItem.Name = "ToolStripMenuItem"; + this.ToolStripMenuItem.Size = new System.Drawing.Size(148, 22); + this.ToolStripMenuItem.Text = "工具栏"; + this.ToolStripMenuItem.Click += new System.EventHandler(this.ToolStripMenuItem_Click); + // + // statusToolStripMenuItem + // + this.statusToolStripMenuItem.Checked = true; + this.statusToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; + this.statusToolStripMenuItem.Name = "statusToolStripMenuItem"; + this.statusToolStripMenuItem.Size = new System.Drawing.Size(148, 22); + this.statusToolStripMenuItem.Text = "状态栏"; + this.statusToolStripMenuItem.Click += new System.EventHandler(this.statusToolStripMenuItem_Click); + // + // onlineToolStripMenuItem + // + this.onlineToolStripMenuItem.Checked = true; + this.onlineToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; + this.onlineToolStripMenuItem.Name = "onlineToolStripMenuItem"; + this.onlineToolStripMenuItem.Size = new System.Drawing.Size(148, 22); + this.onlineToolStripMenuItem.Text = "选项栏"; + this.onlineToolStripMenuItem.Click += new System.EventHandler(this.onlineToolStripMenuItem_Click); + // + // toolStripSeparator7 + // + this.toolStripSeparator7.Name = "toolStripSeparator7"; + this.toolStripSeparator7.Size = new System.Drawing.Size(145, 6); + // + // 桌面记录查看ToolStripMenuItem + // + this.桌面记录查看ToolStripMenuItem.Name = "桌面记录查看ToolStripMenuItem"; + this.桌面记录查看ToolStripMenuItem.Size = new System.Drawing.Size(148, 22); + this.桌面记录查看ToolStripMenuItem.Text = "桌面记录查看"; + this.桌面记录查看ToolStripMenuItem.Click += new System.EventHandler(this.viewReviewToolStripMenuItem_Click); + // + // 锁定ToolStripMenuItem + // + this.锁定ToolStripMenuItem.Name = "锁定ToolStripMenuItem"; + this.锁定ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.G))); + this.锁定ToolStripMenuItem.Size = new System.Drawing.Size(61, 21); + this.锁定ToolStripMenuItem.Text = "锁定(&G)"; + this.锁定ToolStripMenuItem.Click += new System.EventHandler(this.lockToolStripMenuItem_Click); + // + // toolStripMenuItem3 + // + this.toolStripMenuItem3.Name = "toolStripMenuItem3"; + this.toolStripMenuItem3.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.H))); + this.toolStripMenuItem3.Size = new System.Drawing.Size(85, 21); + this.toolStripMenuItem3.Text = "关于程序(&H)"; + this.toolStripMenuItem3.Click += new System.EventHandler(this.About); + // + // onlineList + // + this.onlineList.BackColor = System.Drawing.SystemColors.Window; + this.onlineList.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.onlineList.CheckBoxes = true; + this.onlineList.ContextMenuStrip = this.CmdContext; + this.onlineList.Dock = System.Windows.Forms.DockStyle.Fill; + this.onlineList.FullRowSelect = true; + this.onlineList.HideSelection = false; + this.onlineList.Location = new System.Drawing.Point(3, 3); + this.onlineList.Name = "onlineList"; + this.onlineList.Size = new System.Drawing.Size(1248, 411); + this.onlineList.TabIndex = 0; + this.onlineList.UseCompatibleStateImageBehavior = false; + this.onlineList.UseWindowsThemStyle = false; + this.onlineList.View = System.Windows.Forms.View.Details; + // + // logList + // + this.logList.BackColor = System.Drawing.SystemColors.Window; + this.logList.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.logList.ContextMenuStrip = this.logsContext; + this.logList.Dock = System.Windows.Forms.DockStyle.Fill; + this.logList.FullRowSelect = true; + this.logList.HideSelection = false; + this.logList.Location = new System.Drawing.Point(3, 3); + this.logList.Name = "logList"; + this.logList.Size = new System.Drawing.Size(1140, 144); + this.logList.TabIndex = 0; + this.logList.UseCompatibleStateImageBehavior = false; + this.logList.UseWindowsThemStyle = true; + this.logList.View = System.Windows.Forms.View.Details; + // + // MainApplication + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(1154, 749); + this.Controls.Add(this.splitContainer1); + this.Controls.Add(this.statusStrip1); + this.Controls.Add(this.toolStrip1); + this.Controls.Add(this.menuStrip1); + this.MainMenuStrip = this.menuStrip1; + this.Name = "MainApplication"; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; + this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainApplication_FormClosing); + this.Load += new System.EventHandler(this.MainApplication_Load); + this.CmdContext.ResumeLayout(false); + this.logsContext.ResumeLayout(false); + this.splitContainer1.Panel1.ResumeLayout(false); + this.splitContainer1.Panel2.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit(); + this.splitContainer1.ResumeLayout(false); + this.tabControl1.ResumeLayout(false); + this.tabPage3.ResumeLayout(false); + this.tabPage3.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.columntrackBar)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.deskrefreshTimeSpan)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.rowtrackBar)).EndInit(); + this.tabPage1.ResumeLayout(false); + this.tabControl2.ResumeLayout(false); + this.tabPage2.ResumeLayout(false); + this.statusStrip1.ResumeLayout(false); + this.statusStrip1.PerformLayout(); + this.toolStrip1.ResumeLayout(false); + this.toolStrip1.PerformLayout(); + this.menuStrip1.ResumeLayout(false); + this.menuStrip1.PerformLayout(); + this.ResumeLayout(false); + this.PerformLayout(); + } #endregion @@ -1068,7 +1053,6 @@ private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem5; private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; private System.Windows.Forms.TrackBar columntrackBar; - private System.Windows.Forms.Panel panel1; private System.Windows.Forms.Label label1; private System.Windows.Forms.LinkLabel linkLabel1; private System.Windows.Forms.Label fsd; @@ -1100,7 +1084,6 @@ private System.Windows.Forms.ToolStripMenuItem 桌面记录查看ToolStripMenuItem; private System.Windows.Forms.Label label2; private System.Windows.Forms.NumericUpDown deskrefreshTimeSpan; - private System.Windows.Forms.SplitContainer splitContainer2; private System.Windows.Forms.TabControl tabControl2; private System.Windows.Forms.TabPage tabPage2; private System.Windows.Forms.TabPage tabPage1; @@ -1111,7 +1094,8 @@ private System.Windows.Forms.Label label3; private System.Windows.Forms.ToolStripMenuItem updateClient; private System.Windows.Forms.ToolStripSeparator toolStripSeparator6; - private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem8; + private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem8; + private System.Windows.Forms.TabPage tabPage3; } } diff --git a/SiMay.RemoteMonitor/MainApplication/MainApplication.cs b/SiMay.RemoteMonitor/MainApplication/MainApplication.cs index 27bb7a25dfb3dbdb40d0c3ea09ee5ad97fd4d17a..0eb6576d1a68452c015e3c1722185a12ee758a2a 100644 --- a/SiMay.RemoteMonitor/MainApplication/MainApplication.cs +++ b/SiMay.RemoteMonitor/MainApplication/MainApplication.cs @@ -20,6 +20,7 @@ using System.Text; using System.Threading; using System.Windows.Forms; + namespace SiMay.RemoteMonitor.MainApplication { public partial class MainApplication : Form @@ -28,6 +29,7 @@ namespace SiMay.RemoteMonitor.MainApplication { InitializeComponent(); + } private bool _isRun = true; @@ -56,7 +58,7 @@ namespace SiMay.RemoteMonitor.MainApplication private void OnLoadConfiguration() { this.Text = "SiMay远程监控管理系统-IOASJHD 正式版_" + System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString(); - + bool maximized; if (bool.TryParse(AppConfiguration.WindowMaximize, out maximized)) { @@ -101,16 +103,26 @@ namespace SiMay.RemoteMonitor.MainApplication if (!int.TryParse(AppConfiguration.DesktopRefreshTimeSpan, out this._deskrefreshTimeSpan)) this._deskrefreshTimeSpan = 1500; + if (AppConfiguration.SessionMode!="1") + { + this.stripHost.Text = AppConfiguration.IPAddress; + this.stripPort.Text = AppConfiguration.Port; + } + else + { + this.stripHost.Text = AppConfiguration.ServiceIPAddress; + this.stripHost.Text = AppConfiguration.ServicePort; + } this.columntrackBar.Value = this._desktopViewHeight; this.rowtrackBar.Value = this._desktopViewWidth; this.row.Text = rowtrackBar.Value.ToString(); this.column.Text = columntrackBar.Value.ToString(); this.deskrefreshTimeSpan.Value = _deskrefreshTimeSpan; - this.splitContainer2.SplitterDistance = (splitContainer2.Width / 4); + this.logList.SmallImageList = _imgList; - this.logList.Columns.Add("发生时间", 150); - this.logList.Columns.Add("发生事件", 1000); + this.logList.Columns.Add("发生时间", 200); + this.logList.Columns.Add("发生事件", 800); this.onlineList.ListViewItemSorter = new Entitys.Common.ListViewColumnSorter(); //this.onlineList.ColumnClick += new ColumnClickEventHandler(Entitys.Common.ListViewHelper.ListView_ColumnClick); @@ -357,6 +369,7 @@ namespace SiMay.RemoteMonitor.MainApplication { this._appMainAdapterHandler.RemoteActiveService(c.SessionSyncContext, appkey); }); + } /// @@ -807,15 +820,9 @@ namespace SiMay.RemoteMonitor.MainApplication recordViewer.Show(); } - private void logList_MouseEnter(object sender, EventArgs e) - { - this.splitContainer2.SplitterDistance = splitContainer2.Width - (splitContainer2.Width / 4); - } + - private void onlineList_MouseEnter(object sender, EventArgs e) - { - this.splitContainer2.SplitterDistance = (splitContainer2.Width / 4); - } + private void ToolStripMenuItem7_Click(object sender, EventArgs e) { @@ -868,6 +875,20 @@ namespace SiMay.RemoteMonitor.MainApplication this._appMainAdapterHandler.RemoteServiceReload(c.SessionSyncContext); }); } - } + } + + private void tabPage1_Click(object sender, EventArgs e) + { + + MessageBox.Show("关闭屏幕墙"); + } + + private void tabPage3_Click(object sender, EventArgs e) + { + + MessageBox.Show("开启屏幕墙"); + } + + } } \ No newline at end of file diff --git a/SiMay.RemoteMonitor/MainApplication/MainApplication.resx b/SiMay.RemoteMonitor/MainApplication/MainApplication.resx index 89939ae670cd47b5453fe9edd1371fda4d00b0cc..0ccd74766f90172154faac7f90f415033415e8ec 100644 --- a/SiMay.RemoteMonitor/MainApplication/MainApplication.resx +++ b/SiMay.RemoteMonitor/MainApplication/MainApplication.resx @@ -1,138 +1,138 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 137, 17 - - - 262, 17 - - - 384, 17 - - - 505, 17 - - - 17, 17 - - - 51 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 137, 17 + + + 262, 17 + + + 384, 17 + + + 505, 17 + + + 17, 17 + + + 51 + \ No newline at end of file