我有一个TextBlock和一个ContextMenu。当我按住TextBlock时,我打开ContextMenu。上下文菜单正在打开,因为UI行为正常,但我无法在屏幕上看到ContextMenu。 这是我的代码:
private void LoadButton_Click(object sender, EventArgs e)
{
var dirInfo = new DirectoryInfo(@"P:\op\articles");
foreach (var currFile in dirInfo.GetFiles())
{
using (StreamReader sr = new StreamReader(currFile.FullName))
{
OutputTextBox.Text += currFile.FullName + "\r\n";
}
}
}