mirror of
https://github.com/chylex/Brotli-Builder.git
synced 2024-11-25 07:42:56 +01:00
16 lines
434 B
C#
16 lines
434 B
C#
using System.ComponentModel;
|
|
|
|
namespace BrotliBuilder.Utils.Compat{
|
|
abstract class StatusBarBase : Component{
|
|
public abstract bool Visible { get; set; }
|
|
|
|
public abstract Panel AddPanel(int width);
|
|
public abstract void AddPadding(int width);
|
|
|
|
public abstract class Panel{
|
|
public abstract int Width { get; set; }
|
|
public abstract string Text { get; set; }
|
|
}
|
|
}
|
|
}
|