.net
文章平均质量分 66
.net
khlbat
km
展开
-
prism HelloWorld
参考https://www.bilibili.com/video/BV1Ei4y1F7du手动新建项目新建一个WPF项目, 基于.NET Core 或 .NET Framework 均可, 添加Prism.DryIoc包修改 App.xaml.cs 继承 PrismApplication修改 App.xaml为如下内容<prism:PrismApplication x:Class="prism_two.App" xmlns="http://schemas.microso原创 2022-02-07 23:22:31 · 298 阅读 · 0 评论 -
wpf 自定义控件
UserControlContentControlControl原创 2022-02-04 08:04:53 · 660 阅读 · 0 评论 -
wpf MvvmToolkit Hello World
参考https://gitee.com/ie81/microsoft-toolkit-mvvm-template添加依赖<ItemGroup> <PackageReference Include="DryIoc.dll" Version="4.8.6" /> <PackageReference Include="Microsoft.Toolkit.Mvvm" Version="7.1.2" /></ItemGroup>添加 Vi转载 2022-02-04 01:09:22 · 662 阅读 · 0 评论 -
.net NLog
添加依赖 <ItemGroup> <PackageReference Include="NLog" Version="4.7.13" /> <PackageReference Include="NLog.Config" Version="4.7.13" /> <PackageReference Include="NLog.Schema" Version="4.7.13" /> </ItemGroup>正常来说,原创 2022-02-03 23:56:53 · 446 阅读 · 1 评论 -
.net log4net
添加依赖配置App.config 添加 log4net 配置内容如下<?xml version="1.0" encoding="utf-8" ?><configuration> <configSections> <!--log4net配置--> <section name="log4net" type="System.Configuration.IgnoreSectionHandler" /> </con原创 2022-02-03 23:39:50 · 138 阅读 · 0 评论 -
vs 关联远程仓库的正确姿势
第零步: 参考: https://www.cnblogs.com/lxwphp/p/8728564.html第一步: 远程创建一个仓库, 添加一个文件, 比如 README.md第二步: VS 创建一个解决方案第三步: 使用 git init 或者小乌龟在.sln目录初始化本地git仓库第四步: 添加一个 .gitignore文件, 内容可参考: https://github.com/github/gitignore/blob/main/VisualStudio.gitignore, 内容在最后第原创 2022-02-03 23:32:24 · 1067 阅读 · 0 评论 -
wpf checkbox IsChecked 绑定的正确方式
错误版xaml<Window x:Class="checkboxtest.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"原创 2021-02-23 05:01:25 · 6714 阅读 · 0 评论 -
wpf 用户控件
实现目标dbeaver 新建连接时选择数据库类型控件参考资料自定义控件: https://www.cnblogs.com/dotnet261010/p/6372222.html新建用户控件xaml<UserControl x:Class="database_manager.DatabaseItemSelectorButton" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"原创 2021-02-07 08:29:45 · 377 阅读 · 0 评论 -
.net 基操
vs2017 添加引用报错以管理员身份运行 vs2017 命令行工具定位到如下目录执行如下命令, 然后重启vs即可gacutil -i Microsoft.VisualStudio.Shell.Interop.11.0.dll单元测试安装插件打开vs2017->工具->扩展与更新->联机 进行搜索Unit创建一个.net项目此处以wpf为例添加一个xUnit项目测试项目添加引用运行测试类在测试资源管理器中单击 Output 可以看到控制台输出原创 2021-02-04 00:04:50 · 222 阅读 · 2 评论 -
wpf hello world
新建wpf项目直接F5运行即可常用控件菜单简单菜单添加图标添加图片文件夹添加一张图片xaml布局文件<Window x:Class="wpf_hello.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xml原创 2021-02-03 20:14:14 · 205 阅读 · 0 评论