- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我遇到一个问题,即当我将自定义词典添加到文本框/richtextbox 时,在 %TEMP% 中创建“.dic”文件并且未将其删除。这在 Windows 7 中运行良好,但现在在 Win 10 上我们遇到了上述问题。这些文件始终为零字节,名称类似于 1s3iqqvw.dic。
真正的应用程序有大量的文本/富文本框,每次实例化时,添加自定义词典时都会创建一个新的 dic 文件,用户很快就会在临时目录中出现数百个这样的文件。
更糟糕的是,随着创建的 .dic 文件越来越多,该过程会变得越来越慢 - Windows 似乎会生成随机文件名,然后在创建文件名之前在目录中搜索重复文件,如此重复,直到找到唯一的文件名。当 .dic 文件有数百个时,这会大大减慢应用程序的速度 - 我们需要手动删除 .dic 来修复。
以下代码将重现该问题。在 Win 10 上,.dic 文件是在 %TEMP% 中创建的 - Win 7 上不是这种情况
{
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
//dict.txt must exist
this.textBox1.SpellCheck.CustomDictionaries.Add(new Uri("d:\\dict.txt", UriKind.Relative));
textBox1.Text = "Lorem ipsum dolor sit amet";
}
}
}
<Window x:Class="testapp.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:u="clr-namespace:testapp"
Title="MainWindow" Height="350" Width="799"
>
<Grid>
<TextBox SpellCheck.IsEnabled="True" Height="287" Margin="6,12,0,0" Name="textBox1" VerticalAlignment="Top" HorizontalAlignment="Left" Width="759" TextWrapping="Wrap" AcceptsReturn="True"/>
</Grid>
</Window>
有人知道 Windows 10 上的这个问题吗?你有解决办法吗?
最佳答案
我知道这并不能真正解决问题,但目前看来至少有帮助。我找不到避免创建 .dic 文件的方法。但是,查看代码我发现清除 CustomDictionaries 会触发 .dic 文件被删除。
我目前的想法是在窗口关闭时清除它们。您可以手动清除它们,也可以循环遍历它们,如下所示。 (感谢帖子Find all controls in WPF Window by type)
public MainWindow()
{
InitializeComponent();
this.textBox1.SpellCheck.CustomDictionaries.Add(new Uri("C:\\dict.txt", UriKind.Relative));
textBox1.Text = "Lorem ipsum dolor sit amet";
this.Closed += ((object sender, EventArgs e) => {
foreach (var txtbox in FindVisualChildren<TextBox>(this))
{
txtbox?.SpellCheck?.CustomDictionaries?.Clear();
}
});
}
public static IEnumerable<T> FindVisualChildren<T>(DependencyObject depObj) where T : DependencyObject
{
if (depObj != null)
{
for (int i = 0; i < VisualTreeHelper.GetChildrenCount(depObj); i++)
{
DependencyObject child = VisualTreeHelper.GetChild(depObj, i);
if (child != null && child is T)
{
yield return (T)child;
}
foreach (T childOfChild in FindVisualChildren<T>(child))
{
yield return childOfChild;
}
}
}
}
如果您有兴趣,我认为造成问题的源代码可以在这里找到:( https://referencesource.microsoft.com/#PresentationFramework/src/Framework/System/windows/Documents/WinRTSpellerInterop.cs,2777e92ca38df44a,references )
关于c# - WPF 自定义词典仅在 Windows 10 上的 %TEMP% 中创建 .dict 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59684040/
我有以下数据: foo red test foo red test foo red test2 foo blue test bar red test bar blue test bar red tes
这些字典很长,我需要循环遍历多个键值。举一个简短的例子。从长远来看,我需要将所有数字除以适当的计数以获得平均值。 counts = {'A':10, 'B':14} totals = {'A':{'a
我想构建一个字典,其中一个值是从另一个值构建的。 我想写 d = { 'a':1, 'b':self['a']+1 } 但它没有按预期工作: >>> {'a':1, 'b':self[
这个问题在这里已经有了答案: TypeError: unhashable type: 'dict' (4 个回答) 关闭5年前。 我有这段代码: for element in json[referen
d = { 'a':{'k':1, 'b':'whatever'}, 'b':{'k':2, 'b':'sort by k'} } 想在 python 中按 k 降序对这个字典进行排序。 有点棘手,
使用 this answer ,我创建了 defaultdict 的 defaultdict。现在,我想把那个嵌套很深的 dict 对象变回一个普通的 python dict。 from collec
我有一个如下所示的数据框: NAME ID 155 ARBITRARY_A 697381 208 ARBITRARY_B 691820 2
在添加类型提示 python 函数中哪个是首选? from typing import List, Dict def example_1() -> List[Dict]: pass def e
有这个字典 -> 字典 -> 列表结构 想要比较这种类型的 2 个结构。 one = {"1iG5NDGVre": {"118": ["test1", "test2", "test3", "tcp",
我有一个复杂的对象。 目前它是字典列表的字典。但将来可能会发生变化,同时仍然只使用列表和字典。 我想查找所有类型为“datetime”的列表元素或字典值并将它们更改为字符串。 递归搜索似乎有效,但无法
我不知道如何在 html 中显示“净利润”的结果,这是 net_profit/sales 的结果。我不想把这个除法公式直接放在html中,因为除此之外还有很多其他复杂的计算。 那么如何把这个除法结果同
我找不到与此用例类似的问题。 我有一个包含列表的字典,我想从每个列表中提取一个特定的索引,并将其分配到一个具有相同键的新字典中。 dict1 = { 'key1': ['a', 'b', 'c'],
这听起来可能很愚蠢。当我在 python 中重写 dict 时: class idict(dict): def __init__ (self, *args, **kwargs):
我有一个像这样的 dict: { ('America', 25, 'm', 'IT'): 10000, ('America', 22, 'm', 'IT'): 8999, ('
我仍在努力学习 Python 中的字典。是否可以使用正则表达式或 startswith 函数在字典中引用键? 我有以下格式的字典,我正在尝试对“AreaOfInterest1”、“AreaOfInte
这个问题在这里已经有了答案: How to restore a builtin that I overwrote by accident? (3 个答案) 关闭 5 年前。 我不小心为关键字 dic
我只是想知道是否有一种简单的方法可以做到这一点。我有一个从文件解析的特定结构,输出是一个字典列表的一个列表。目前,我只有一些看起来像这样的代码: for i in xrange(len(data)):
我想在字典中匹配字典的数据。这: print(a["myval"]["val1"]) 努力获得所需的输出。但是我想“通配” myval 条目。同时输出 myval2 的结果 print(a['*'][
我想知道这是否是用两个字典更新状态的正确解决方案 var PopulationCityView = React.createClass({ getInitialState: function(
我正在将 CSV 转换为 dict,所有值均已正确加载,但有一个问题。 CSV: Testing testing\nwe are into testing mode My\nServer Thi
我是一名优秀的程序员,十分优秀!