我正在编写Visual Studio扩展,它将从Target Process获取用户案例和错误,以便检入注释与标题匹配。我一切正常,我只想能够设置列表框的onclick即可将评论字段的文本设置在图像顶部。
我不明白为什么我不能只找到父母并设置兄弟姐妹。
https://i.imgur.com/LOL0nfu.png
tPondStarter.cs
[TeamExplorerSection("FCAED961-F13E-42C3-AEA1-1E837360DC11", TeamExplorerPageIds.PendingChanges, 900)]
public class tPondStarter : ITeamExplorerSection
{
#region ITeamExplorerSection
public virtual void Initialize(object sender, SectionInitializeEventArgs e)
{
//ServiceProvider = e.ServiceProvider;
Title = "Target Process Items";
SectionContent = new TpondPresentation();
}
}
TpondPresentation.xaml.cs-单击列表框中的一个项目时,它将激活此代码。我希望此功能将选定的项目发送到“待更改”框顶部的“注释”字段。当前,此代码将剪贴板设置为您选择的任何列表项。
private void TaskListCombo_MouseDown(object sender, MouseButtonEventArgs e)
{
System.Windows.Forms.Clipboard.SetText(taskListCombo.SelectedItem.ToString());
}