VI.Projector.Editor/VI.Projector.Editor/JobServiceDialog.cs
Decompiler Source FileVI.Projector.Editor.JobServiceDialogDecompiled Source
Interpretation
- Decompiled source file. Use method/event registrations and call-site extraction to connect back to DialogMethod, QBMEvent, and API layers.
Relations
- CallMethod: AssignDefaultDeployTargets at line 299
Typed Edges
- No typed edges extracted for this source.
References
- No direct source references extracted.
Referenced By
- No direct source references extracted.
Complete Source
1using System;2using System.Collections;3using System.Collections.Generic;4using System.ComponentModel;5using System.Diagnostics;6using System.Drawing;7using System.Linq;8using System.Net;9using System.Runtime.CompilerServices;10using System.Runtime.InteropServices;11using System.Windows.Forms;12using VI.Base;13using VI.Controls;14using VI.Controls.AlienSupport;15using VI.Controls.Base;16using VI.DB;17using VI.DB.Entities;18using VI.DB.MetaData;19using VI.DB.Sync;20using VI.FormBase;21using VI.ImageLibrary;22using VI.Projector.Database;23using VI.Projector.Schema;24using VI.Projector.UI.Dialogs;25using VI.UI.Base.Help;26using VI.UI.Controls.Common;2728namespace VI.Projector.Editor;2930[Help("Help\\Projector.Editor\\JobServiceDialog")]31public class JobServiceDialog : ProjectorUIDialogBase32{33 [StructLayout((LayoutKind)3)]34 [CompilerGenerated]35 private struct _003C_CheckFQDN_003Ed__3 : IAsyncStateMachine36 {37 public int _003C_003E1__state;3839 public AsyncVoidMethodBuilder _003C_003Et__builder;4041 public JobServiceDialog _003C_003E4__this;4243 private int _003Corder_003E5__2;4445 private TaskAwaiter<IPHostEntry> _003C_003Eu__1;4647 private void MoveNext()48 {49 //IL_00a6: Unknown result type (might be due to invalid IL or missing references)50 //IL_00ab: Unknown result type (might be due to invalid IL or missing references)51 //IL_00b2: Unknown result type (might be due to invalid IL or missing references)52 //IL_0073: Unknown result type (might be due to invalid IL or missing references)53 //IL_0078: Unknown result type (might be due to invalid IL or missing references)54 //IL_008c: Unknown result type (might be due to invalid IL or missing references)55 //IL_008d: Unknown result type (might be due to invalid IL or missing references)56 int num = _003C_003E1__state;57 JobServiceDialog jobServiceDialog = _003C_003E4__this;58 try59 {60 if (num == 0)61 {62 goto IL_0065;63 }64 if (jobServiceDialog.FQDN.Length != 0)65 {66 jobServiceDialog.m_PictureBoxState.Image = ImageHandler.GetImage(StockImage.StateYellow, clone: false);67 _003Corder_003E5__2 = ++m_Order;68 goto IL_0065;69 }70 m_Order++;71 jobServiceDialog.m_PictureBoxState.Image = null;72 goto end_IL_000e;73 IL_0065:74 try75 {76 TaskAwaiter<IPHostEntry> val;77 if (num != 0)78 {79 val = Dns.GetHostEntryAsync(jobServiceDialog.FQDN).GetAwaiter();80 if (!val.IsCompleted)81 {82 num = (_003C_003E1__state = 0);83 _003C_003Eu__1 = val;84 ((AsyncVoidMethodBuilder)(ref _003C_003Et__builder)).AwaitUnsafeOnCompleted<TaskAwaiter<IPHostEntry>, _003C_CheckFQDN_003Ed__3>(ref val, ref this);85 return;86 }87 }88 else89 {90 val = _003C_003Eu__1;91 _003C_003Eu__1 = default(TaskAwaiter<IPHostEntry>);92 num = (_003C_003E1__state = -1);93 }94 val.GetResult();95 if (_003Corder_003E5__2 == m_Order)96 {97 jobServiceDialog.m_PictureBoxState.Image = ImageHandler.GetImage(StockImage.StateGreen, clone: false);98 }99 }100 catch101 {102 if (_003Corder_003E5__2 == m_Order)103 {104 jobServiceDialog.m_PictureBoxState.Image = ImageHandler.GetImage(StockImage.StateRed, clone: false);105 }106 }107 end_IL_000e:;108 }109 catch (System.Exception exception)110 {111 _003C_003E1__state = -2;112 ((AsyncVoidMethodBuilder)(ref _003C_003Et__builder)).SetException(exception);113 return;114 }115 _003C_003E1__state = -2;116 ((AsyncVoidMethodBuilder)(ref _003C_003Et__builder)).SetResult();117 }118119 [DebuggerHidden]120 private void SetStateMachine(IAsyncStateMachine stateMachine)121 {122 ((AsyncVoidMethodBuilder)(ref _003C_003Et__builder)).SetStateMachine(stateMachine);123 }124 }125126 private StockImageComponent m_StockImageComponent;127128 private Button m_ButtonWizard;129130 private static int m_Order;131132 private ISession m_Session;133134 private ContextMenuStrip m_ContextMenuWizard;135136 private IContainer components;137138 private HeaderControl m_HeaderControl;139140 private VI.Controls.AlienSupport.Panel m_PanelButtons;141142 private Button m_ButtonOk;143144 private Button m_ButtonCancel;145146 private Edit m_EditFQDN;147148 private Edit m_EditName;149150 private PictureBox m_PictureBoxState;151152 private ToolTip m_ToolTip;153154 public string FQDN => ((Control)m_EditFQDN).Text.Trim();155156 public string ServerName => ((Control)m_EditName).Text.Trim();157158 internal JobServiceDialog(ISession session)159 {160 //IL_0043: Unknown result type (might be due to invalid IL or missing references)161 //IL_004d: Expected O, but got Unknown162 //IL_0070: Unknown result type (might be due to invalid IL or missing references)163 //IL_007a: Expected O, but got Unknown164 InitializeComponent();165 m_Session = session;166 _Translate();167 _SetupLogic();168 ExecuteTriggered((Action<IComponent>)([CompilerGenerated] (IComponent b) =>169 {170 //IL_0012: Unknown result type (might be due to invalid IL or missing references)171 //IL_0017: Unknown result type (might be due to invalid IL or missing references)172 ((ToolStripDropDown)m_ContextMenuWizard).Show((Control)(object)m_ButtonWizard, ((Control)m_ButtonWizard).PointToClient(Control.MousePosition));173 })).When((IComponent)(object)m_ButtonWizard, "Click");174 m_ContextMenuWizard = new ContextMenuStrip();175 ((ToolStrip)m_ContextMenuWizard).Items.Add("Dummy");176 ((ToolStripDropDown)m_ContextMenuWizard).Opening += new CancelEventHandler(_ContextMenuWizardOpeningHandler);177 }178179 private void _Translate()180 {181 LanguageManager instance = LanguageManager.Instance;182 ((Control)this).Text = instance["PrjEdtr_JobServiceDialog_Caption_Title"];183 ((Control)m_HeaderControl).Text = instance["PrjEdtr_JobServiceDialog_Caption_Description"];184 IMetaTable table = m_Session.MetaData().GetTable("QBMServer");185 m_EditFQDN.Caption = table.Columns["FQDN"].Display.Translated;186 m_EditName.Caption = table.Columns["Ident_Server"].Display.Translated;187 m_ButtonOk.Caption = "MapUI_UIControls_Ok";188 m_ButtonCancel.Caption = "MapUI_UIControls_Cancel";189 }190191 private void _SetupLogic()192 {193 //IL_0008: Unknown result type (might be due to invalid IL or missing references)194 //IL_0012: Expected O, but got Unknown195 ((BaseDialog)this).ExecuteTriggered((Action)([CompilerGenerated] () =>196 {197 _BuildName();198 _CheckFQDN();199 })).When((IComponent)(object)m_EditFQDN, "TextChanged");200 }201202 [AsyncStateMachine(typeof(_003C_CheckFQDN_003Ed__3))]203 private void _CheckFQDN()204 {205 //IL_0002: Unknown result type (might be due to invalid IL or missing references)206 //IL_0007: Unknown result type (might be due to invalid IL or missing references)207 _003C_CheckFQDN_003Ed__3 _003C_CheckFQDN_003Ed__ = default(_003C_CheckFQDN_003Ed__3);208 _003C_CheckFQDN_003Ed__._003C_003Et__builder = AsyncVoidMethodBuilder.Create();209 _003C_CheckFQDN_003Ed__._003C_003E4__this = this;210 _003C_CheckFQDN_003Ed__._003C_003E1__state = -1;211 ((AsyncVoidMethodBuilder)(ref _003C_CheckFQDN_003Ed__._003C_003Et__builder)).Start<_003C_CheckFQDN_003Ed__3>(ref _003C_CheckFQDN_003Ed__);212 }213214 private void _BuildName()215 {216 string fQDN = FQDN;217 int num = fQDN.IndexOf('.');218 ((Control)m_EditName).Text = ((num <= 0) ? fQDN : fQDN.Substring(0, num));219 }220221 private void _ContextMenuWizardOpeningHandler(object sender, CancelEventArgs e)222 {223 try224 {225 ((ToolStrip)m_ContextMenuWizard).Items.Clear();226 using ((base.IoCContainer != null) ? BusyBlock() : null)227 {228 ISqlFormatter sqlFormatter = m_Session.Resolve<ISqlFormatter>();229 ToolStripItem[] array = Enumerable.ToArray<ToolStripItem>(Enumerable.Cast<ToolStripItem>((System.Collections.IEnumerable)Enumerable.Select<IEntity, ToolStripMenuItem>((System.Collections.Generic.IEnumerable<IEntity>)m_Session.Source().GetCollection(Query.From("QBMServer").Where(sqlFormatter.AndRelation("not " + sqlFormatter.EmptyClause("QueueName", ValType.String), "not " + sqlFormatter.EmptyClause("FQDN", ValType.String), sqlFormatter.Comparison("IsQBMServiceInstalled", true, ValType.Bool))).SelectDisplays()230 .Select("Ident_Server", "FQDN")), (Func<IEntity, ToolStripMenuItem>)([CompilerGenerated] (IEntity entity) => new ToolStripMenuItem(entity.Display, (Image)null, new EventHandler(_WizardItemSelectedHandler))231 {232 Tag = entity233 }))));234 if (array.Length != 0)235 {236 ((ToolStrip)m_ContextMenuWizard).Items.AddRange(array);237 }238 else239 {240 ((ToolStrip)m_ContextMenuWizard).Items.Add(LanguageManager.Get("PrjEdtr_JobServiceDialog_Caption_NoServerFound"), ImageHandler.GetImage(StockImage.Information));241 }242 }243 }244 catch (System.Exception exception)245 {246 ExceptionMgr.Instance.HandleException(exception, this);247 }248 }249250 private void _WizardItemSelectedHandler(object sender, EventArgs e)251 {252 //IL_0001: Unknown result type (might be due to invalid IL or missing references)253 try254 {255 if (((ToolStripItem)(ToolStripMenuItem)sender).Tag is IEntity provider)256 {257 ((Control)m_EditFQDN).Text = provider.GetValue<string>("FQDN");258 ((Control)m_EditName).Text = provider.GetValue<string>("Ident_Server");259 }260 }261 catch (System.Exception exception)262 {263 ExceptionMgr.Instance.HandleException(exception, this);264 }265 }266267 internal IEntity CreateServer(ISystemIdentity system)268 {269 //IL_0008: Unknown result type (might be due to invalid IL or missing references)270 if (system == null)271 {272 throw new ArgumentNullException("system");273 }274 using IUnitOfWork unitOfWork = m_Session.StartUnitOfWork();275 m_Session.Resolve<ISqlFormatter>();276 IEntity server = Enumerable.FirstOrDefault<IEntity>((System.Collections.Generic.IEnumerable<IEntity>)m_Session.Source().GetCollection((from c in Query.From("QBMServer")277 where c.Column("FQDN").IsEqualTo(FQDN) && c.Column("Ident_Server").IsEqualTo(ServerName)278 select c).SelectAll(), EntityCollectionLoadType.Bulk));279 if (server == null)280 {281 server = m_Session.Source().CreateNew("QBMServer");282 server.PutValue("FQDN", FQDN);283 server.PutValue("Ident_Server", ServerName);284 unitOfWork.Put(server);285 server = server.Reload(m_Session);286 }287 string uidTag = DatabaseHelper.GetJobServiceTagForTargetSystem(m_Session, system);288 IEntity entity = Enumerable.FirstOrDefault<IEntity>((System.Collections.Generic.IEnumerable<IEntity>)m_Session.Source().GetCollection((from c in Query.From("QBMServerHasServerTag")289 where c.Column("UID_QBMServer").IsEqualTo(server.GetRaw("UID_QBMServer")) && c.Column("UID_QBMServerTag").IsEqualTo(uidTag)290 select c).SelectAll(), EntityCollectionLoadType.Bulk));291 if (entity == null)292 {293 entity = m_Session.Source().CreateNew("QBMServerHasServerTag");294 entity.PutValue("UID_QBMServer", server.GetRaw("UID_QBMServer"));295 entity.PutValue("UID_QBMServerTag", uidTag);296 unitOfWork.Put(entity);297 }298 unitOfWork.Flush();299 server.CallMethod("AssignDefaultDeployTargets");300 unitOfWork.Put(server);301 unitOfWork.Commit();302 return server;303 }304305 protected override bool OnCheckMandatoryFields()306 {307 if (FQDN.Length == 0)308 {309 ReportMissingMandatoryValue(m_EditFQDN.DisplayCaption);310 return false;311 }312 if (((Control)this).Name.Length == 0)313 {314 ReportMissingMandatoryValue(m_EditName.DisplayCaption);315 return false;316 }317 return base.OnCheckMandatoryFields();318 }319320 protected override void Dispose(bool disposing)321 {322 m_PictureBoxState.Image = null;323 ContextMenuStrip contextMenuWizard = m_ContextMenuWizard;324 if (contextMenuWizard != null)325 {326 ((Component)contextMenuWizard).Dispose();327 }328 m_ContextMenuWizard = null;329 if (disposing && components != null)330 {331 ((System.IDisposable)components).Dispose();332 }333 base.Dispose(disposing);334 }335336 private void InitializeComponent()337 {338 //IL_0001: Unknown result type (might be due to invalid IL or missing references)339 //IL_000b: Expected O, but got Unknown340 //IL_003e: Unknown result type (might be due to invalid IL or missing references)341 //IL_0048: Expected O, but got Unknown342 //IL_005f: Unknown result type (might be due to invalid IL or missing references)343 //IL_0069: Expected O, but got Unknown344 //IL_00c2: Unknown result type (might be due to invalid IL or missing references)345 //IL_00ea: Unknown result type (might be due to invalid IL or missing references)346 //IL_00fc: Unknown result type (might be due to invalid IL or missing references)347 //IL_010d: Unknown result type (might be due to invalid IL or missing references)348 //IL_0120: Unknown result type (might be due to invalid IL or missing references)349 //IL_0141: Unknown result type (might be due to invalid IL or missing references)350 //IL_0158: Unknown result type (might be due to invalid IL or missing references)351 //IL_01c2: Unknown result type (might be due to invalid IL or missing references)352 //IL_01d3: Unknown result type (might be due to invalid IL or missing references)353 //IL_01fa: Unknown result type (might be due to invalid IL or missing references)354 //IL_0252: Unknown result type (might be due to invalid IL or missing references)355 //IL_0263: Unknown result type (might be due to invalid IL or missing references)356 //IL_0287: Unknown result type (might be due to invalid IL or missing references)357 //IL_02df: Unknown result type (might be due to invalid IL or missing references)358 //IL_02f0: Unknown result type (might be due to invalid IL or missing references)359 //IL_0314: Unknown result type (might be due to invalid IL or missing references)360 //IL_0375: Unknown result type (might be due to invalid IL or missing references)361 //IL_03a1: Unknown result type (might be due to invalid IL or missing references)362 //IL_03c0: Unknown result type (might be due to invalid IL or missing references)363 //IL_03d4: Unknown result type (might be due to invalid IL or missing references)364 //IL_0407: Unknown result type (might be due to invalid IL or missing references)365 //IL_044f: Unknown result type (might be due to invalid IL or missing references)366 //IL_047b: Unknown result type (might be due to invalid IL or missing references)367 //IL_049a: Unknown result type (might be due to invalid IL or missing references)368 //IL_04ae: Unknown result type (might be due to invalid IL or missing references)369 //IL_04e1: Unknown result type (might be due to invalid IL or missing references)370 //IL_0511: Unknown result type (might be due to invalid IL or missing references)371 //IL_0535: Unknown result type (might be due to invalid IL or missing references)372 //IL_0595: Unknown result type (might be due to invalid IL or missing references)373 //IL_05a6: Unknown result type (might be due to invalid IL or missing references)374 //IL_05ca: Unknown result type (might be due to invalid IL or missing references)375 //IL_0611: Unknown result type (might be due to invalid IL or missing references)376 //IL_0632: Unknown result type (might be due to invalid IL or missing references)377 //IL_06c2: Unknown result type (might be due to invalid IL or missing references)378 components = (IContainer)new Container();379 m_HeaderControl = new HeaderControl();380 m_PanelButtons = new VI.Controls.AlienSupport.Panel();381 m_ButtonOk = new Button();382 m_ButtonCancel = new Button();383 m_ToolTip = new ToolTip(components);384 m_EditFQDN = new Edit();385 m_EditName = new Edit();386 m_PictureBoxState = new PictureBox();387 m_StockImageComponent = new StockImageComponent();388 m_ButtonWizard = new Button();389 ((ISupportInitialize)m_HeaderControl).BeginInit();390 ((Control)m_PanelButtons).SuspendLayout();391 ((ISupportInitialize)m_EditFQDN).BeginInit();392 ((ISupportInitialize)m_EditName).BeginInit();393 ((ISupportInitialize)m_PictureBoxState).BeginInit();394 ((Control)this).SuspendLayout();395 ((Control)m_HeaderControl).BackColor = Color.White;396 ((Control)m_HeaderControl).BackgroundImageLayout = (ImageLayout)3;397 ((Control)m_HeaderControl).Dock = (DockStyle)1;398 ((Control)m_HeaderControl).ForeColor = Color.Black;399 ((Control)m_HeaderControl).Location = new Point(0, 0);400 ((Control)m_HeaderControl).Margin = new Padding(0);401 ((Control)m_HeaderControl).MinimumSize = new Size(0, 48);402 ((Control)m_HeaderControl).Name = "m_HeaderControl";403 ((Control)m_HeaderControl).Padding = new Padding(8);404 ((Control)m_HeaderControl).Size = new Size(541, 48);405 m_HeaderControl.StockImage = StockImage.Server;406 ((Control)m_HeaderControl).TabIndex = 0;407 ((Control)m_PanelButtons).Controls.Add((Control)(object)m_ButtonOk);408 ((Control)m_PanelButtons).Controls.Add((Control)(object)m_ButtonCancel);409 ((Control)m_PanelButtons).Dock = (DockStyle)2;410 ((Control)m_PanelButtons).Location = new Point(0, 145);411 ((Control)m_PanelButtons).Margin = new Padding(0);412 ((Control)m_PanelButtons).Name = "m_PanelButtons";413 ((Control)m_PanelButtons).Size = new Size(541, 41);414 ((Control)m_PanelButtons).TabIndex = 3;415 ((Control)m_ButtonOk).Anchor = (AnchorStyles)10;416 m_ButtonOk.ButtonStyle = VI.Controls.ButtonStyle.Corporate;417 m_ButtonOk.Caption = "~Ok";418 m_ButtonOk.DialogResult = (DialogResult)1;419 ((Control)m_ButtonOk).Location = new Point(372, 9);420 ((Control)m_ButtonOk).Margin = new Padding(0);421 ((Control)m_ButtonOk).Name = "m_ButtonOk";422 ((Control)m_ButtonOk).Size = new Size(75, 23);423 ((Control)m_ButtonOk).TabIndex = 0;424 ((Control)m_ButtonCancel).Anchor = (AnchorStyles)10;425 m_ButtonCancel.ButtonStyle = VI.Controls.ButtonStyle.Corporate;426 m_ButtonCancel.Caption = "~Cancel";427 m_ButtonCancel.DialogResult = (DialogResult)2;428 ((Control)m_ButtonCancel).Location = new Point(457, 9);429 ((Control)m_ButtonCancel).Margin = new Padding(0);430 ((Control)m_ButtonCancel).Name = "m_ButtonCancel";431 ((Control)m_ButtonCancel).Size = new Size(75, 23);432 ((Control)m_ButtonCancel).TabIndex = 0;433 m_ToolTip.IsBalloon = true;434 ((Control)m_EditFQDN).AccessibleName = "~FQDN";435 ((Control)m_EditFQDN).AccessibleRole = (AccessibleRole)42;436 ((Control)m_EditFQDN).Anchor = (AnchorStyles)13;437 ((Control)m_EditFQDN).BackColor = Color.FromArgb(255, 255, 255);438 m_EditFQDN.Caption = "~FQDN";439 m_EditFQDN.ControlStyle = ViControlStyle.Inherited;440 ((Control)m_EditFQDN).ForeColor = Color.Black;441 m_EditFQDN.IsMandatoryField = true;442 ((Control)m_EditFQDN).Location = new Point(8, 64);443 ((Control)m_EditFQDN).Margin = new Padding(0, 0, 0, 5);444 ((Control)m_EditFQDN).Name = "m_EditFQDN";445 m_EditFQDN.ShowCaptionBar = false;446 ((Control)m_EditFQDN).Size = new Size(474, 22);447 ((Control)m_EditFQDN).TabIndex = 0;448 ((Control)m_EditName).AccessibleName = "~Name";449 ((Control)m_EditName).AccessibleRole = (AccessibleRole)42;450 ((Control)m_EditName).BackColor = Color.FromArgb(255, 255, 255);451 m_EditName.Caption = "~Name";452 m_EditName.ControlStyle = ViControlStyle.Inherited;453 ((Control)m_EditName).ForeColor = Color.Black;454 m_EditName.IsMandatoryField = true;455 ((Control)m_EditName).Location = new Point(8, 103);456 ((Control)m_EditName).Margin = new Padding(0, 0, 0, 5);457 ((Control)m_EditName).Name = "m_EditName";458 m_EditName.ShowCaptionBar = false;459 ((Control)m_EditName).Size = new Size(375, 22);460 ((Control)m_EditName).TabIndex = 2;461 ((Control)m_PictureBoxState).Anchor = (AnchorStyles)9;462 ((Control)m_PictureBoxState).Location = new Point(510, 64);463 ((Control)m_PictureBoxState).Name = "m_PictureBoxState";464 ((Control)m_PictureBoxState).Size = new Size(22, 22);465 m_PictureBoxState.SizeMode = (PictureBoxSizeMode)3;466 m_PictureBoxState.TabIndex = 4;467 m_PictureBoxState.TabStop = false;468 m_StockImageComponent.DefaultImageProperty = null;469 ((Control)m_ButtonWizard).Anchor = (AnchorStyles)9;470 m_ButtonWizard.ButtonStyle = VI.Controls.ButtonStyle.Corporate;471 ((Control)m_ButtonWizard).Location = new Point(486, 64);472 ((Control)m_ButtonWizard).Margin = new Padding(0);473 ((Control)m_ButtonWizard).Name = "m_ButtonWizard";474 ((Control)m_ButtonWizard).Size = new Size(22, 22);475 m_StockImageComponent.SetStockImage((IComponent)(object)m_ButtonWizard, new StockImageDefinition("Image", StockImage.Wizard, ImageSize.Small, ImageState.Normal));476 ((Control)m_ButtonWizard).TabIndex = 1;477 ((Form)this).AcceptButton = (IButtonControl)(object)m_ButtonOk;478 ((Control)this).BackColor = SystemColors.Window;479 ((Form)this).CancelButton = (IButtonControl)(object)m_ButtonCancel;480 ((Form)this).ClientSize = new Size(541, 186);481 ((Control)this).Controls.Add((Control)(object)m_ButtonWizard);482 ((Control)this).Controls.Add((Control)(object)m_PictureBoxState);483 ((Control)this).Controls.Add((Control)(object)m_EditName);484 ((Control)this).Controls.Add((Control)(object)m_EditFQDN);485 ((Control)this).Controls.Add((Control)(object)m_PanelButtons);486 ((Control)this).Controls.Add((Control)(object)m_HeaderControl);487 ((Form)this).FormBorderStyle = (FormBorderStyle)3;488 ((Form)this).MaximizeBox = false;489 ((Form)this).MinimizeBox = false;490 ((Control)this).MinimumSize = new Size(555, 224);491 ((Control)this).Name = "JobServiceDialog";492 ((Form)this).ShowIcon = false;493 ((Form)this).ShowInTaskbar = false;494 ((Control)this).Text = "~Create a job server";495 ((ISupportInitialize)m_HeaderControl).EndInit();496 ((Control)m_PanelButtons).ResumeLayout(false);497 ((ISupportInitialize)m_EditFQDN).EndInit();498 ((ISupportInitialize)m_EditName).EndInit();499 ((ISupportInitialize)m_PictureBoxState).EndInit();500 ((Control)this).ResumeLayout(false);501 }502}503