Class Tile
This class used to represent page shortcuts
Inheritance
System.Object
Tile
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Simplic.Framework.UI
Assembly: Simplic.Framework.dll
Syntax
public class Tile
Properties
| Improve this Doc View SourceBackgroundColor
Gets or sets of the tile's background color
Declaration
public Color BackgroundColor { get; set; }
Property Value
Type | Description |
---|---|
System.Windows.Media.Color |
DisplayIndex
Gets or sets the display index
Declaration
public int? DisplayIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
Icon
Gets or sets the Icons icon Id
Declaration
public Guid? Icon { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Guid> |
Id
Gets or sets the id of a tile
Declaration
public Guid Id { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
PageId
Gets or sets the id of the page that should be opened when clicked on this tile
Declaration
public Guid PageId { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
Text
Gets or sets the tile text that is shown on the start page
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String |
TextColor
Gets or sets of the tile's text color
Declaration
public Color TextColor { get; set; }
Property Value
Type | Description |
---|---|
System.Windows.Media.Color |
TileSize
Gets or sets TileSize of a tile
Declaration
public TileType TileSize { get; set; }
Property Value
Type | Description |
---|---|
TileType |
Methods
| Improve this Doc View SourceDeepCopy()
Creates a clone of this tile
Declaration
public Tile DeepCopy()
Returns
Type | Description |
---|---|
Tile | A clone of this tile |