コード例 #1
0
ファイル: DrawableStates.cs プロジェクト: zetaPRIME/xybrid
 public void Set(DrawableStates link)
 {
     inner = link;
 }
コード例 #2
0
ファイル: ThemeManager.cs プロジェクト: zetaPRIME/xybrid
 static void BuildControlStates(DrawableStatesProxy proxy, string control, string subtype, params string[] assets)
 {
     DrawableStates states = new DrawableStates();
     foreach (string state in assets) {
         Drawable d = FetchDrawable("controls." + control + "." + subtype + "." + state);
         if (d == null) d = FetchDrawable("controls." + control + ".default." + state);
         if (d == null) d = Drawable.None;
         states[state] = d;
     }
     proxy.Set(states);
 }
コード例 #3
0
ファイル: DrawableStates.cs プロジェクト: zetaPRIME/xybrid
 public DrawableStatesProxy(DrawableStates link)
 {
     inner = link;
 }