- 浏览: 139780 次
最新评论
文章列表
win10 UWP 应用设置 简单的把设置需要的,放到微软自带的LocalSettings LocalSettings.Values可以存放几乎所有数据 如果需要存放复合数据,一个设置项是由多个值组成,可以使用ApplicationDataCompositeValue将多个合并。
存放一个string
string str
{
set
{
ApplicationData.Current.LocalSettings.
- 2016-01-12 21:01
- 浏览 461
- 评论(0)
win10 UWP 应用设置 简单的把设置需要的,放到微软自带的LocalSettings LocalSettings.Values可以存放几乎所有数据 如果需要存放复合数据,一个设置项是由多个值组成,可以使用ApplicationDataCompositeValue将多个合并。
存放一个string
string str
{
set
{
ApplicationData.Current.LocalSettings.
- 2016-01-12 21:01
- 浏览 218
- 评论(0)
一个更改总是提交,仓库有好多看起来很乱的
git没有可以把最后一个提交提交到服务器的能力,可以用rebase
先使用分支做更改
git branch 更改
git checkout 更改
提交更改
git commit 更改
然后到主分支看最新提交
git checkout master
git log
记下那提交
把更改合并master
git merge 更改
用rebase把更改多个合为最后一个
git rebase -i 记下的提交
在打开的文件除了第一个pick,改为s
用i修改
修改按esc,:wq保存
然后文件按 ...
- 2016-01-12 21:00
- 浏览 357
- 评论(0)
Windows下没有比较好的Markdown编辑器
我就自己写一个
csdn的Markdown很好,就是我需要截图保存有麻烦
需要把我的截图保存在本地,然后上传
这个过程比较麻烦
csdn的图没法外链
- 2016-01-09 15:56
- 浏览 291
- 评论(0)
Windows下没有比较好的Markdown编辑器
我就自己写一个
csdn的Markdown很好,就是我需要截图保存有麻烦
需要把我的截图保存在本地,然后上传
这个过程比较麻烦
csdn的图没法外链
- 2016-01-09 15:56
- 浏览 236
- 评论(0)
button有很多和wpf一样,可以看《深入浅出WPF》
我们可以在button的click写上
<Button Content="确定" Click="Button_Click"/>
在Button_Click按F12到代码写上点击按钮需要运行
- 2016-01-03 09:58
- 浏览 231
- 评论(0)
button有很多和wpf一样,可以看《深入浅出WPF》
我们可以在button的click写上
<Button Content="确定" Click="Button_Click"/>
在Button_Click按F12到代码写上点击按钮需要运行
- 2016-01-03 09:58
- 浏览 333
- 评论(0)
内网最简单是开ftp
别人使用flashfxp下载
但是如果人多了,那么下载会变很卡
人多下载可以用utorrent,utorrent可以搭建一个内网分享
先下载BitCometTracker,运行,点击config,设置端口
TCPPortTracker运行的TCP端口
BitCometTracker是一个高性能增强型BitTorrent服务器。BitCometTracker同时支持HTTP和UDP的Tracker协议,采用高性能服务器技术,支持多端口同时监听,数据更新插件。BitCometTracker通过了8万个文件和
- 2016-01-01 09:40
- 浏览 563
- 评论(0)
FlipView
可以让用户逐个浏览的项目集合
<FlipView Grid.Row="0" Height="100" Margin="10,10,10,10">
<Image Source="Assets/QQ.png"/>
<Image Source="Assets/搜狐.png"/>
<Image Source="Assets/暴风影音.png ...
- 2015-12-21 09:54
- 浏览 414
- 评论(0)
FlipView
可以让用户逐个浏览的项目集合
<FlipView Grid.Row="0" Height="100" Margin="10,10,10,10">
<Image Source="Assets/QQ.png"/>
<Image Source="Assets/搜狐.png"/>
<Image Source="Assets/暴风影音.png ...
- 2015-12-21 09:54
- 浏览 188
- 评论(0)
[toc]
阿里云使用centos
登录 http://www.aliyun.com/
点击登录
进入控制 https://home.console.aliyun.com/
云服务器
运行中
把ip输入
软件下载
链接:http://pan.baidu.com/s/1i4f2FRn 密码:17s6
mysql搭建
检查硬盘有mysql
rpm -qa | grep mysql
有的话,我们就通过 rpm -e 命令 或者 rpm -e –nodeps 命令来卸载掉
rpm -e mysql // 普通删除模式
rpm -e -- ...
- 2015-12-20 09:55
- 浏览 429
- 评论(0)
申请微软开发者可以到https://dev.windows.com/zh-cn/programs/join
如果是学生,先去http://www.dreamspark.com/
如果是英文,点student,中文点学生
点击创建账号
在创建账户的页面,填写DreamSpark认证账户的相关信息,填写完全后点击继续验证
在学生身份页面,如果有edu邮箱可以验证,如果没有可以传自己的学生证
如果没有得到他们验证,可以去网上买一个edu
点击windows开发者账号
点获得代码
复制代码
下面注册不论是学生还是不是https://dev.windows.com/regi ...
- 2015-12-16 15:58
- 浏览 384
- 评论(0)
获取系统信息
Windows.System.Profile.AnalyticsVersionInfo analyticsVersion = Windows.System.Profile.AnalyticsInfo.VersionInfo;
reminder = analyticsVersion.DeviceFamily;
ulong v = ulong.Parse(Windows.System.Profile.AnalyticsInfo.VersionInfo.DeviceFamilyVersion);
...
- 2015-12-13 10:28
- 浏览 271
- 评论(0)
获取系统信息
Windows.System.Profile.AnalyticsVersionInfo analyticsVersion = Windows.System.Profile.AnalyticsInfo.VersionInfo;
reminder = analyticsVersion.DeviceFamily;
ulong v = ulong.Parse(Windows.System.Profile.AnalyticsInfo.VersionInfo.DeviceFamilyVersion);
...
- 2015-12-13 10:28
- 浏览 266
- 评论(0)
implicit operator string
<script type="text/javascript">
$(function () {
$('pre.prettyprint code').each(function () {
var lines = $(this).text().split('\n').length;
var $numbering = $('<ul/>').addCl ...
- 2015-12-12 09:33
- 浏览 201
- 评论(0)