如何删除Coding4Fun MessagePrompt中的Tick按钮

时间:2014-03-13 05:55:48

标签: windows-phone-8

我试图在消息提示中隐藏默认检查按钮。但是我找不到任何要隐藏的属性。只有IsCancelVisible按钮属性。现在我想创建自定义确定按钮而不是默认检查按钮。请帮助。< / p>

1 个答案:

答案 0 :(得分:4)

尝试使用此代码。

 // remove all buttons
    messagePrompt.ActionPopUpButtons.Clear();

例如,如果您希望在下面显示自己的按钮,请使用以下代码:

var messagePrompt = new MessagePrompt
{
    Title = "Simple Message",
    Message = "This is a demo of the Coding4Fun MessagePrompt."
};

// remove all buttons
messagePrompt.ActionPopUpButtons.Clear();

// add your own
Button button;
messagePrompt.ActionPopUpButtons.Add(button = new Button()
    {
        Content = "Close"
    });

// handle click state
button.Click += button_Click;

享受此代码......