Ejemplo n.º 1
0
 public static void ModifyLivingroomImagesPath(E_LivingroomImages ResourceName)
 {
     string wvRightPath = CurrentDirectory;
     wvRightPath += CreatePath(GetResource(E_Direcetories.ImagesDir));
     wvRightPath += CreatePath(GetResource(ResourceName));
     SetResource(ResourceName, wvRightPath);
     //     Application.Current.Resources[roomImage] = wvRightPath;
 }
Ejemplo n.º 2
0
 private static void SetResource(E_LivingroomImages ResourceName, string Value)
 {
     SetResource(ResourceName.ToString(), Value);
 }
Ejemplo n.º 3
0
 public static string GetResource(E_LivingroomImages ResourceName)
 {
     return GetResource(ResourceName.ToString()).ToString();
 }