上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 30 下一页
摘要: 1、按钮控件的前台 <UserControl x:Class="JapanSubway.UserControls.LeftMenuButton" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="ht 阅读全文
posted @ 2021-10-24 15:06 星星c# 阅读(110) 评论(0) 推荐(0)
摘要: 样式可以像css那样,把属性写到公共的地方,然后各个需要用到的控件再去引用 1、最简单的样式Demo 下面是定义一个最简单的样式,然后让2个按钮去引用: <Window.Resources> <Style x:Key="buttonStyle" TargetType="Button"> <Sette 阅读全文
posted @ 2021-10-24 15:03 星星c# 阅读(381) 评论(0) 推荐(0)
摘要: 主要有5种: 1、StackPanel 这种布局是按照子控件的顺序逐个按顺序排队显示,可以设置排队的方式 下面的代码是水平排队展示: <StackPanel Orientation="Horizontal"> <Button Width="100" Height="20" Content="test 阅读全文
posted @ 2021-10-24 15:02 星星c# 阅读(75) 评论(0) 推荐(0)
摘要: Thank you for Downloading | DevExpress https://go.devexpress.com/DevExpressDownload_UniversalTrialComplete.aspx 阅读全文
posted @ 2021-10-24 15:02 星星c# 阅读(1099) 评论(0) 推荐(0)
摘要: 1、新建一个类,用来处理接收到的文件信息,这个类是从网上找的 public class UserFile { public string FileName { get; set; } public long Length { get; set; } public string Extension { 阅读全文
posted @ 2021-10-23 13:23 星星c# 阅读(84) 评论(0) 推荐(0)
摘要: 定义命令: public ICommand CommandShowFileInFolder { get; private set; } 初始化命令: 备注:一定要放在构造函数里,如果放在page_load方法无法实现。 public MainWindow() { CommandShowFileInF 阅读全文
posted @ 2021-10-18 17:50 星星c# 阅读(349) 评论(0) 推荐(0)
摘要: 增加定义: public ICommand<RowClickArgs> RowDoubleClickCommand { get; set; } 初始化: 备注:一定要放在构造函数里 public MainWindow() { RowDoubleClickCommand = new DelegateC 阅读全文
posted @ 2021-10-18 17:44 星星c# 阅读(584) 评论(0) 推荐(0)
摘要: @echo off if "%1"=="h" goto begin start mshta vbscript:createobject("wscript.shell").run("""%~nx0"" h",0)(window.close)&&exit :begin REM c: cd C:\User 阅读全文
posted @ 2021-10-17 19:29 星星c# 阅读(208) 评论(0) 推荐(0)
摘要: 运行时: 先执行:set CUDA_VISIBLE_DEVICES=0 再执行:hub serving start -c "C:\Users\wjx\Desktop\ocr\PaddleOCR-release-2.3\deploy\hubserving\ocr_system\config.json" 阅读全文
posted @ 2021-10-10 13:05 星星c# 阅读(424) 评论(0) 推荐(0)
摘要: 1、shared_buffers 调整为内存的1/4,我这64GB这里设置为: shared_buffers = 16GB 2、wal_buffers wal_buffers = 50MB 50MB 【待测试】 https://blog.csdn.net/shipeng1022/article/de 阅读全文
posted @ 2021-10-09 13:27 星星c# 阅读(59) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 30 下一页