WPF—DataTemplate

作者:追风剑情 发布于:2019-9-2 16:48 分类:C#

示例 MainWindow.xaml <Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas...

阅读全文>>

标签: C#

评论(0) 浏览(2847)

触控旋转及缩放模型

作者:追风剑情 发布于:2019-8-30 17:06 分类:LayaAir

示例:直接在官方示例上改的 import { ui } from "./../ui/layaMaxUI"; /** * 本示例采用非脚本的方式实现,而使用继承页面基类,实现页面逻辑。在IDE里面设置场景的Runtime属性即可和场景进行关联 * 相比脚本方式,继承式页面类,可以直接使用页面定义的属性(通过IDE内var属性定义),比如this.tipLbll,this.scor...

阅读全文>>

标签: LayaAir

评论(0) 浏览(4806)

Unity Tiny

作者:追风剑情 发布于:2019-8-28 14:01 分类:Unity3d

以下教程使用的Unity2018.3.14f Tiny用于发布HTML5项目 官方文档  tiny-0.13   tiny-0.14   tiny-0.15 一、安装Tiny 二、导入官方Demo 三、运行Demo->BasicW...

阅读全文>>

标签: Unity3d

评论(0) 浏览(4201)

WPF—Style实现继承

作者:追风剑情 发布于:2019-8-27 16:14 分类:C#

示例 <Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/express...

阅读全文>>

标签: C#

评论(0) 浏览(2830)

WPF—ControlTemplate

作者:追风剑情 发布于:2019-8-27 14:19 分类:C#

示例 <Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/express...

阅读全文>>

标签: C#

评论(0) 浏览(3590)

WPF—模板Template

作者:追风剑情 发布于:2019-8-27 12:16 分类:C#

示例:渐变按钮 <Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/ex...

阅读全文>>

标签: C#

评论(0) 浏览(3474)

WPF—定义Style

作者:追风剑情 发布于:2019-8-27 10:41 分类:C#

MainWindow.xaml <Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://sche...

阅读全文>>

标签: C#

评论(0) 浏览(3150)

TCP解包与封包

作者:追风剑情 发布于:2019-8-26 16:32 分类:C#

示例 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TestConsole { class Program { static void Main(strin...

阅读全文>>

标签: C#

评论(0) 浏览(3892)

TcpClient

作者:追风剑情 发布于:2019-8-26 11:57 分类:C#

示例:聊天室 服务端代码 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; using System.Threading; using System.Net; using System.Net.So...

阅读全文>>

标签: C#

评论(0) 浏览(3610)

WPF—数据双向绑定

作者:追风剑情 发布于:2019-8-23 18:29 分类:C#

MainWindow.xaml <Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schema...

阅读全文>>

标签: C#

评论(0) 浏览(4619)

C语言—文件操作

作者:追风剑情 发布于:2019-8-22 15:33 分类:C

示例一:向文件中写入字符串 #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> int main(void) { FILE *fp; //打开文件,如果文件不存在,则自动创建 if ((fp = fopen("D:\\demo.txt", "at+")) == NULL) { puts("Fail ...

阅读全文>>

标签: C语言

评论(0) 浏览(2697)

WPF—DispatcherTimer

作者:追风剑情 发布于:2019-8-20 21:55 分类:C#

示例 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Window...

阅读全文>>

标签: C#

评论(0) 浏览(2743)

WPF—截屏

作者:追风剑情 发布于:2019-8-20 17:01 分类:C#

示例 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Window...

阅读全文>>

标签: C#

评论(0) 浏览(3488)

Task.Delay()

作者:追风剑情 发布于:2019-8-20 11:00 分类:C#

示例 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Window...

阅读全文>>

标签: C#

评论(0) 浏览(2440)

WPF—延迟执行

作者:追风剑情 发布于:2019-8-19 22:43 分类:C#

示例: 参考https://www.cnblogs.com/qldsrx/archive/2013/02/22/2922682.html using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System....

阅读全文>>

标签: C#

评论(0) 浏览(3765)

WPF—ComboBox

作者:追风剑情 发布于:2019-8-19 12:05 分类:C#

示例 MainWindow.xaml <Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="ht...

阅读全文>>

标签: C#

评论(0) 浏览(2343)

WPF—ResourceDictionary

作者:追风剑情 发布于:2019-8-16 17:40 分类:C#

一、新建资源字典文件 Dictionary1.xaml <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/x...

阅读全文>>

标签: C#

评论(0) 浏览(3076)

WPF—INotifyPropertyChanged

作者:追风剑情 发布于:2019-8-16 14:45 分类:C#

示例 XAML <Window x:Class="WpfTest.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xm...

阅读全文>>

标签: C#

评论(0) 浏览(2858)

WPF—PropertyMetadata

作者:追风剑情 发布于:2019-8-14 21:30 分类:C#

示例 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Window...

阅读全文>>

标签: C#

评论(0) 浏览(2696)

C语言—常量和预处理器

作者:追风剑情 发布于:2019-7-21 14:39 分类:C

示例 //Visual Studio中加上这句才可以使用scanf() //否则只能使用scanf_s() #define _CRT_SECURE_NO_WARNINGS //用#define定义的常量称为明示常量 #define PI 3.14 //引入printf()、scanf_s() #include <stdio.h> #includ...

阅读全文>>

标签: C语言

评论(0) 浏览(2856)

C语言—scanf_s()

作者:追风剑情 发布于:2019-7-20 21:36 分类:C

示例 //Visual Studio中加上这句才可以使用scanf() //否则只能使用scanf_s() #define _CRT_SECURE_NO_WARNINGS //引入printf()、scanf_s() #include <stdio.h> #include <stdint.h> //引入bool类型,C99标准新增 #include ...

阅读全文>>

标签: C语言

评论(0) 浏览(9230)

C语言—bool类型

作者:追风剑情 发布于:2019-7-20 15:16 分类:C

示例 #include <stdio.h> #include <stdint.h> //引入bool类型,C99标准新增 #include <stdbool.h> #include <windows.h> //对于不支持C99的编译器可以通过宏定义bool类型 //#define bool int //#define tr...

阅读全文>>

标签: C语言

评论(0) 浏览(3178)

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号