我有一个 WPF 应用程序,并且在 Resources.resx 中有多个字符串值,并且 Resources.resx 的访问修饰符设置为 public。
我的问题是我想将 Resources.resx 文件中的值直接检索到 xml 标记中,并且还想编辑 Resources.resx 中键的值。
为了编辑我使用的 Resources.resx 中的一些键
this.Resources["Duration_value"] = "0:0:15"; // that's a key in Resources.resx that i created
但它根本不起作用,价值保持不变。
关于第二个问题,假设我有一个带有双重动画的情节提要的 xml 代码,例如:
<Storyboard x:Key="FlipIn" >
<DoubleAnimation Storyboard.TargetProperty="(RenderTransform).(TransformGroup.Children)[1].(SkewTransform.AngleX)" From="-100" To="0" Duration="0:0:.75" DecelerationRatio=".9" />
<DoubleAnimation Storyboard.TargetProperty="(RenderTransform).(TransformGroup.Children)[1].(SkewTransform.AngleY)" From="-100" To="0" Duration="0:0:.75" DecelerationRatio=".9" />
</Storyboard>
假设我想更改持续时间值
Duration="0:0:.75"
至
Duration="{ Duration_value from regex file }"
我如何在 XML 标记中做到这一点?比如我应该输入什么?我尝试使用 App.Resources 但找不到参考。
我也是WPF的新手。
提前谢谢了。