Input Roll - small commit, nothing too useful
This commit is contained in:
parent
2c0052ee20
commit
0be92800fd
|
@ -79,6 +79,12 @@ namespace BizHawk.Client.EmuHawk
|
|||
[Category("Behavior")]
|
||||
public bool AllowColumnReorder { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Indicates whether the entire row will always be selected
|
||||
/// </summary>
|
||||
[Category("Appearance")]
|
||||
public bool FullRowSelect { get; set; }
|
||||
|
||||
#endregion
|
||||
|
||||
#region Event Handlers
|
||||
|
@ -147,6 +153,21 @@ namespace BizHawk.Client.EmuHawk
|
|||
return string.Empty; // TODO
|
||||
}
|
||||
|
||||
[Browsable(false)]
|
||||
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)]
|
||||
public int VisibleRows
|
||||
{
|
||||
get
|
||||
{
|
||||
if (HorizontalOrientation)
|
||||
{
|
||||
return (Width - _horizontalOrientedColumnWidth) / CellWidth;
|
||||
}
|
||||
|
||||
return (Height / CellHeight) - 1;
|
||||
}
|
||||
}
|
||||
|
||||
public void AddColumns(IEnumerable<RollColumn> columns)
|
||||
{
|
||||
Columns.AddRange(columns);
|
||||
|
|
Loading…
Reference in New Issue