示例#1
0
        /// <summary>
        /// Shows the input etry window with the given model
        /// </summary>
        /// <param name="model">Model to bind to</param>
        private void ShowProxyEntry(ProxyEntryInformation model)
        {
            ProxyEntry dialog = new ProxyEntry(model);

            // Attach event
            dialog.OnProxyEntered += dialog_OnProxyEntered;
            // Show window
            dialog.ShowModal();
        }