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

15 lines
332 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace WPFMachine.Absolute
{
class FrotzImage : System.Windows.Controls.Image
{
public FrotzImage()
{
this.VisualBitmapScalingMode = System.Windows.Media.BitmapScalingMode.Unspecified;
}
}
}