Exemplo n.º 1
0
 void SetSelectionEnabled(WTableView view)
 {
     if (!view.SelectionEnabled)
     {
         Control.Selector            = new ColorDrawable(Android.Graphics.Color.Transparent);
         Control.SoundEffectsEnabled = false;
     }
 }
Exemplo n.º 2
0
 void SetSeparatorColor(WTableView view)
 {
     if (view.SeparatorColor != Color.Transparent)
     {
         Control.Divider       = new ColorDrawable(view.SeparatorColor.ToAndroid());
         Control.DividerHeight = FDroidUtils.Dp(1);
     }
     else
     {
         Control.Divider       = null;
         Control.DividerHeight = 0;
     }
 }
Exemplo n.º 3
0
 void SetSelectionEnabled(WTableView view)
 {
 }
Exemplo n.º 4
0
 void SetSeparatorColor(WTableView view)
 {
     Control.SeparatorColor = view.SeparatorColor.ToUIColor();
 }