Loading...
As most people use Photoshop as image editing software, I designed a two-way interaction method between Photoshop and the main application in order to achieve the goal of exporting the document to ...
最近在和汉化组合作,做漫画汉化自动化的相关事项,所以花了一个晚上研究这个东西,收获颇丰。这里主要介绍当时想出来的 重合度优先 模型,虽然现在已经不用了,但是十分有趣。 中文版是初稿,很多地方不太准确,不再仔细推敲了,如果有疑惑以英文版为准,其是我申请 MIT 时写的 Portfolio 的版本,做过勘误。 注意:其实这就是优化 $IoU$ (Intersection over Union),...
Introduction Github repo: https://github.com/janeczku 这个 Calibre-Web 是一个非常好用的能够将 Calibre 的数据库做成 Server 浏览的一个项目。 但是,epub-js 的版本老旧且功能不够,特别是电脑上不能用滚轮翻页,这对我这种我重度残废很不友好,所以就像魔改一下功能。 原理介绍 旨在对下图黄色区域增加滚轮支持。 ...
把 UIElement 作为属性 关于 UserControl 的自定义属性,参考上一篇文章。我们这里创建一个类型为 UIElement 的属性: public UIElement ContainerContent { get { return (UIElement)GetValue(ContainerContentProperty); } set { SetValue(Co...
将 DataContext 设置为本身: 在 XAML 中设置 <UserControl DataContext="{Binding RelativeSource={RelativeSource Self}}"> 或者在后台设置,二选一 public <UserControl>() { InitializeComponent(); Data...
方法一:曲线救国,用 OpenFileDialog OpenFileDialog openFileDialog = new OpenFileDialog { Multiselect = false, Title = "选择新建项目的位置", CheckFileExists = false, CheckPathExists = true, FileNam...