0
我試圖掩飾內心消息默認勾選按鈕prompt.but我找不到任何財產hide.have只IsCancelVisible按鈕property.Now我想創建自定義的確認按鈕而不是默認的檢查按鈕。請幫助。如何刪除在Coding4Fun MessagePrompt蜱按鈕
我試圖掩飾內心消息默認勾選按鈕prompt.but我找不到任何財產hide.have只IsCancelVisible按鈕property.Now我想創建自定義的確認按鈕而不是默認的檢查按鈕。請幫助。如何刪除在Coding4Fun MessagePrompt蜱按鈕
試試這個代碼工作的罰款。
// 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;
享受這個代碼....
謝謝你這麼多Prabhakar.keep接觸良好的工作 – Kanniyappan