コード例 #1
0
 UIElement[] CreateUIElements(ISimpleAppOption option)
 {
     if (option is ISimpleAppOptionCheckBox)
     {
         return(CreateUIElements((ISimpleAppOptionCheckBox)option));
     }
     if (option is ISimpleAppOptionButton)
     {
         return(CreateUIElements((ISimpleAppOptionButton)option));
     }
     if (option is ISimpleAppOptionTextBox)
     {
         return(CreateUIElements((ISimpleAppOptionTextBox)option));
     }
     if (option is ISimpleAppOptionUserContent)
     {
         return(CreateUIElements((ISimpleAppOptionUserContent)option));
     }
     return(null);
 }
コード例 #2
0
 UIElement[] CreateUIElements(ISimpleAppOption option)
 {
     if (option is ISimpleAppOptionCheckBox)
         return CreateUIElements((ISimpleAppOptionCheckBox)option);
     if (option is ISimpleAppOptionButton)
         return CreateUIElements((ISimpleAppOptionButton)option);
     if (option is ISimpleAppOptionTextBox)
         return CreateUIElements((ISimpleAppOptionTextBox)option);
     if (option is ISimpleAppOptionUserContent)
         return CreateUIElements((ISimpleAppOptionUserContent)option);
     return null;
 }