示例#1
0
        protected void Render(ProblemDescriptor problem)
        {
            this.ProblemDescription.Text = problem.ShortDescription;
            this.toolTip1.SetToolTip(this.ProblemDescription, problem.LongDescription);

            TreeViewHelper.InitializeTreeView(this.treeView1, problem.Commands);
        }
示例#2
0
 protected void LoadCommandList(IList <ICommand> commands)
 {
     TreeViewHelper.InitializeTreeView(this.CommandsTreeView, commands);
 }