Loading

上一页 1 2 3 4 5 6 7 8 9 10 ··· 24 下一页
摘要: 题目 代码class Solution {public: vector findDiagonalOrder(vector>& matrix) { //判断是否为空 if(matrix.empty()) return {}; ... 阅读全文
posted @ 2019-02-10 23:29 李正浩 阅读(307) 评论(0) 推荐(0) 编辑
摘要: 题目 代码 class Solution {public: vector spiralOrder(vector>& matrix) { if (matrix.empty() || matrix[0].empty()) return {}; i... 阅读全文
posted @ 2019-02-10 22:50 李正浩 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 题目 代码class Solution {public: int dominantIndex(vector& nums) { vector sortedNums=nums; std::sort(sortedNums.begin(),sort... 阅读全文
posted @ 2019-02-10 21:48 李正浩 阅读(283) 评论(0) 推荐(0) 编辑
摘要: 效果 点击选择皮肤颜色 代码 public enum Themes { Blue, Gray, Orange } /// /// 主题颜色管理类 /// public static class ... 阅读全文
posted @ 2019-02-06 20:58 李正浩 阅读(508) 评论(0) 推荐(0) 编辑
摘要: 有可能的原因如下:绑定的属性一定是属性而不能是字段,比如:public int data;是无法生效的,而public int data {get;set;}这样才能生效 阅读全文
posted @ 2019-02-04 22:30 李正浩 阅读(361) 评论(0) 推荐(0) 编辑
摘要: 项目地址Github:项目地址 软件截图 项目中用到的技术和问题 [WPF]限制程序单例运行 [WPF]创建系统栏小图标 [WPF]程序随系统自启动 [WPF]xml序列化以及反序列化数据 [WPF]项目整合Metro和MaterialDesignInXamlToolki... 阅读全文
posted @ 2019-01-29 15:31 李正浩 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 下载安装及使用 代码实例 public class Person:INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; publi... 阅读全文
posted @ 2019-01-29 12:25 李正浩 阅读(622) 评论(0) 推荐(0) 编辑
摘要: 代码 System.Threading.Mutex mutex; protected override void OnStartup(StartupEventArgs e) { bool ret; ... 阅读全文
posted @ 2019-01-29 11:00 李正浩 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 隐藏窗体任务栏图标/// /// MainWindow.xaml 的交互逻辑 /// public partial class MainWindow { public MainWindow() { ... 阅读全文
posted @ 2019-01-29 10:56 李正浩 阅读(723) 评论(0) 推荐(0) 编辑
摘要: 代码Microsoft.Win32.RegistryKey key = Microsoft.Win32.Registry.CurrentUser.OpenSubKey("SOFTWARE\\Microsoft\\Windows\\Curren... 阅读全文
posted @ 2019-01-29 10:47 李正浩 阅读(221) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 24 下一页