Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/ZBlankContainer.cs
2016-06-09 10:34:36 -04:00

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; }
}
}