在屏幕窗口手机上看不到ContextMenu

时间:2016-09-29 18:23:41

标签: c# windows-phone

我有一个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";
        }
    }
}

0 个答案:

没有答案