BrawlCrate v0.41
Wii File Editor
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | Protected Member Functions | List of all members
BrawlCrate.UI.IssueDialog Class Reference
Inheritance diagram for BrawlCrate.UI.IssueDialog:

Public Member Functions

 IssueDialog (Exception e, List< ResourceNode > edited)
 

Public Attributes

ListBox lstChangedFiles
 

Protected Member Functions

override void Dispose (bool disposing)
 Clean up any resources being used. More...
 

Constructor & Destructor Documentation

◆ IssueDialog()

BrawlCrate.UI.IssueDialog.IssueDialog ( Exception  e,
List< ResourceNode edited 
)
inline
17 {
18 _exception = e;
19
20 InitializeComponent();
21
22 Text = e.GetType().ToString();
23 txtStack.Text = e.Message + ' ' + (e.InnerException?.Message ?? "") + '\n' + e.StackTrace;
24
25 lstChangedFiles.Visible =
26 lblChangedFiles.Visible =
27 spltChangedFiles.Visible =
28 edited != null && edited.Count > 0;
29
30 lstChangedFiles.Items.AddRange(edited.ToArray());
31 }
ListBox lstChangedFiles
Definition: IssueDialog.Designer.cs:290

Member Function Documentation

◆ Dispose()

override void BrawlCrate.UI.IssueDialog.Dispose ( bool  disposing)
inlineprotected

Clean up any resources being used.

Parameters
disposingtrue if managed resources should be disposed; otherwise, false.
17 {
18 if (disposing && (components != null))
19 {
20 components.Dispose();
21 }
22 base.Dispose(disposing);
23 }

Member Data Documentation

◆ lstChangedFiles

ListBox BrawlCrate.UI.IssueDialog.lstChangedFiles

The documentation for this class was generated from the following files: