2 changed files
.github/workflows | ||
build.yml + | ||
README.md | ||
Add comment 757 private void ShellTreeView_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e) {
Add comment 758 if (e.Button == F.MouseButtons.Right) {
Add comment 759 if (e.Node.Tag != null)
Add comment 760 Minus new ShellContextMenu(e.Node.Tag as IListItemEx).ShowContextMenu(this, e.Location, CMF.CANRENAME);
Add comment 760 Plus new ShellContextMenu(this.ShellListView, e.Node.Tag as IListItemEx).ShowContextMenu(this, e.Location, CMF.CANRENAME);
Add comment 761 } else if (e.Button == F.MouseButtons.Left) {
Add comment 762 if (e.X > e.Node.Bounds.Left - 5 - 16)
Add comment 763 this._IsNavigate = true;
Add comment 757 private void ShellTreeView_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e) {
Add comment 758 if (e.Button == F.MouseButtons.Right) {
Add comment 759 if (e.Node.Tag != null)
Add comment 760 Minus new ShellContextMenu(e.Node.Tag as IListItemEx).ShowContextMenu(this, e.Location, CMF.CANRENAME);
Add comment 760 Plus new ShellContextMenu(this.ShellListView, e.Node.Tag as IListItemEx).ShowContextMenu(this, e.Location, CMF.CANRENAME);
Add comment 761 } else if (e.Button == F.MouseButtons.Left) {
Add comment 762 if (e.X > e.Node.Bounds.Left - 5 - 16)
Add comment 763 this._IsNavigate = true;