top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

WindowsPhone: Removing default 'Tick' button in Coding4Fun MessagePrompt(C#)

+1 vote
305 views
WindowsPhone: Removing default 'Tick' button in Coding4Fun MessagePrompt(C#)
posted Mar 12, 2015 by Puhal

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+2 votes

By default MessagePrompt showing 'Tick' button like this

enter image description here

So we can remove it by using below code to add our custom buttons.

ObjMessagePrompt.ActionPopUpButtons.Clear();

answer Mar 13, 2015 by Jdk
...