Exemplo n.º 1
0
 //----------------------------------------------------------------------
 public ListViewImageCell( ListView _view, Texture2D _image )
     : base(_view, null, _image)
 {
     Color   = Color.White;
 }
Exemplo n.º 2
0
 public ListViewColumn( ListView _listView, Texture2D _tex, Color _color, int _iWidth, Anchor _anchor )
 {
     Width   = _iWidth;
     Image   = new Image( _listView.Screen, _tex );
     Image.Color = _color;
     Anchor  = _anchor;
 }
Exemplo n.º 3
0
        //----------------------------------------------------------------------
        public ListViewCell( ListView _view, string _strText, Texture2D _image )
        {
            mListView = _view;
            Text    = _strText;
            Image   = _image;

            Indicators = new List<ListViewCellIndicator>();
        }
Exemplo n.º 4
0
 //----------------------------------------------------------------------
 public ListViewColumn( ListView _listView, string _strText, int _iWidth, Anchor _anchor )
 {
     Width   = _iWidth;
     Label   = new UI.Label( _listView.Screen, _strText );
     Anchor  = _anchor;
 }
Exemplo n.º 5
0
 //----------------------------------------------------------------------
 public ListViewTextCell( ListView _view, string _strText )
     : base(_view, _strText, null)
 {
     Color   = mListView.TextColor;
 }