EddiSpeechResponder.VariablesWindow.VariablesWindow C# (CSharp) Метод

VariablesWindow() публичный Метод

public VariablesWindow ( string scriptName ) : EddiEvents
scriptName string
Результат EddiEvents
        public VariablesWindow(string scriptName)
        {
            InitializeComponent();

            // Read Markdown and convert it to HTML
            string markdown;
            try
            {
                DirectoryInfo dir = new DirectoryInfo(System.IO.Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location));
                markdown = File.ReadAllText(dir.FullName + @"\Variables.md");
            }
            catch (Exception ex)
            {
                Logging.Error("Failed to find variables.md", ex);
                markdown = "";
            }

            string description;
            if (Events.DESCRIPTIONS.TryGetValue(scriptName, out description))
            {
                // The user is editing an event, add event-specific information
                markdown += "## Event\n\n" + description + ".\n\n";
                IDictionary<string, string> variables;
                if (Events.VARIABLES.TryGetValue(scriptName, out variables))
                {
                    if (variables.Count == 0)
                    {
                        markdown += "This event has no variables.";
                    }
                    else
                    {
                        markdown += "Information about this event is available under the `event` object.\n\n";
                        foreach (KeyValuePair<string, string> variable in Events.VARIABLES[scriptName])
                        {
                            markdown += "    - " + variable.Key + " " + variable.Value + "\n";
                        }
                    }
                }
            }

            string html = CommonMark.CommonMarkConverter.Convert(markdown);

            // Insert the HTML
            textBrowser.NavigateToString(html);
        }
    }
VariablesWindow