Innovenergy_trunk/csharp/App/SaliMax/src/Switch.cs

15 lines
267 B
C#
Raw Normal View History

using InnovEnergy.Lib.Utils;
namespace InnovEnergy.App.SaliMax;
public static class Switch
{
public static TextBlock Open(String name)
{
return TextBlock.AlignCenterHorizontal
(
" __ __ ",
name
);
}
}