c# - "do not ask me again" in confirmation popup -
I have an application of windows that have ow windows. When I close the form, I want to add a confirmation box that says "Do you want to close this form?" How can I confirm the post-popup in C # in "Do not ask again"?
First of all you have a solution in a
class ,
_yes >> to memorize the user's preferences
_askUserAgain with public properties three
static public properties which I have created and
_no .
public class confirmation {public static bull _askUserAgain = true; Public static bool _yes = false; Public Stable Bull _no = false; }
Comments
Post a Comment