触控滚动条样式
触控滚动条 WPF自带的ScrollViewer不支持在触控设备上进行下滑(上滑)滚动,所以得添加自定义控件 搭配滚动条样式使用更佳 代码 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172public class TouchableScrollViewer : ScrollViewer{ //触摸点的坐标 Point _startPosition; //滚动条当前位置 double _startVerticalOffset; double _startHorizontalOffset; #region 依赖属性 public bool IsNoTouch { get { return (bool)GetValue(IsNoTouchProperty); } ...
滚动条样式
...
讲述人工具类
SpeechSynthesizer 类 定义 命名空间:System.Speech.Synthesis 程序集:System.Speech.dll 包:System.Speech v9.0.0-rc.1.24431.7 Source:SpeechSynthesizer.cs 示例 12345678910111213141516171819202122232425using System;using System.Speech.Synthesis;namespace SampleSynthesis{ class Program { static void Main(string[] args) { // Initialize a new instance of the SpeechSynthesizer. SpeechSynthesizer synth = new SpeechSynthesizer(); // Configure the audio output. ...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick Start Create a new post 1$ hexo new "My New Post" More info: Writing Run server 1$ hexo server More info: Server Generate static files 1$ hexo generate More info: Generating Deploy to remote sites 1$ hexo deploy More info: Deployment