mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 14:02:19 +00:00
22 lines
465 B
C#
22 lines
465 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
using System.Windows.Documents;
|
|
|
|
namespace WPFMachine.Screen
|
|
{
|
|
internal class ZBlankContainer : InlineUIContainer
|
|
{
|
|
internal ZBlankContainer(int Width)
|
|
{
|
|
this.Width = Width;
|
|
var c = new System.Windows.Controls.Canvas();
|
|
c.Width = Width;
|
|
|
|
this.Child = c;
|
|
}
|
|
|
|
internal int Width { get; private set; }
|
|
}
|
|
}
|