如何确保WPF子菜单在还原模式下不会退出主窗口?

时间:2018-09-16 03:52:06

标签: wpf xaml

在还原模式下,如何确保子菜单项位于主窗口中,如下所示?

enter image description here

这是我代码的一小部分

private int getMatColor(String typeColor)
{
    int returnColor = Color.BLACK;
    int arrayId = getResources().getIdentifier("mdcolor_" + typeColor, "array", getApplicationContext().getPackageName());

    if (arrayId != 0)
    {
        TypedArray colors = getResources().obtainTypedArray(arrayId);
        int index = (int) (Math.random() * colors.length());
        returnColor = colors.getColor(index, Color.BLACK);
        colors.recycle();
    }
    return returnColor;
}

另一个应用程序。

enter image description here

注意:如@G K所指出,它在某些计算机上可能运行良好。

0 个答案:

没有答案