| 123456789101112131415161718192021222324 | <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"                    xmlns:system="clr-namespace:System;assembly=mscorlib"><!--WPFShowMessageBox-->    <system:String x:Key="Detail">细节</system:String>    <system:String x:Key="Confirm">确认</system:String>    <system:String x:Key="Cancel">撤销</system:String>    <system:String x:Key="Yes">是</system:String>    <system:String x:Key="No">不是</system:String>    <!--Bottom_Frame-->    <system:String x:Key="OverView">主页</system:String>    <system:String x:Key="RecipeView">配方管理</system:String>    <!--RecipeEditView-->    <system:String x:Key="GlobalLableButtonReload">重载</system:String>    <system:String x:Key="GlobalLableButtonSave">保存</system:String>    <system:String x:Key="GlobalLableMenuNewRecipe">新建配方</system:String>    <system:String x:Key="GlobalLableMenuImportRecipe">导入配方</system:String>    <system:String x:Key="GlobalLableMenuNewFolder">新建文件夹</system:String>    <system:String x:Key="GlobalLableMsgInputRecipeName" >输入配方名称</system:String></ResourceDictionary>
 |