WPF常用方法示例

1、WPF弹出确定和取消的选择框MessageBox

MessageBoxResult dr = MessageBox.Show("确定要删除吗?", "提示", MessageBoxButton.OKCancel, MessageBoxImage.Question);
if (dr == MessageBoxResult.OK)
{
    //添加一些操作
}

2、WPF程序内存回收释放

public partial class App : Application
{
    LierdaCracker cracker = new LierdaCracker();
    protected override void OnStartup(StartupEventArgs e)
    {
        cracker.Cracker();
        base.OnStartup(e);
    }
}

  

posted @ 2021-03-29 01:09  microsoft-zhcn  阅读(276)  评论(0编辑  收藏  举报