-
Notifications
You must be signed in to change notification settings - Fork 496
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Simplify info in nethook analyzer #1039
Conversation
Resources/NetHookAnalyzer2/NetHookAnalyzer2/NetHookItemTreeBuilder.cs
Outdated
Show resolved
Hide resolved
Resources/NetHookAnalyzer2/NetHookAnalyzer2/NetHookItemTreeBuilder.cs
Outdated
Show resolved
Hide resolved
What was the problem with making it the root node? |
I tried to make TreeNode and similar things, but it would either render only the text or the message data, but not both, which is quite strange. |
Co-authored-by: Yaakov <[email protected]>
@@ -300,6 +300,7 @@ private void InitializeComponent() | |||
this.itemExplorerTreeView.Name = "itemExplorerTreeView"; | |||
this.itemExplorerTreeView.Size = new System.Drawing.Size(455, 426); | |||
this.itemExplorerTreeView.TabIndex = 0; | |||
this.itemExplorerTreeView.ShowRootLines = false; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the difference between true and false here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tried to make it the root node, but it wouldn't render properly.
You need to expand Info before, since all it says is the name and whether it's a proto, it's much simpler to just say that straight away.