コード例 #1
0
        public OxyImage(string fileName)
        {
            var bytes = File.ReadAllBytes(fileName);

            Value = new OxyPlot.OxyImage(bytes);
        }
コード例 #2
0
 public OxyImage(byte[] bytes)
 {
     Value = new OxyPlot.OxyImage(bytes);
 }
コード例 #3
0
 public OxyImage(OxyPlot.OxyImage image)
 {
     Value = image;
 }