blob: 1eac063651a918242a8ff6cb2225c683dfa94c2a [file] [log] [blame]
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
/* Copyright (c) 2018-2019 Festo AG & Co. KG <https://www.festo.com/net/de_de/Forms/web/contact_international>, author: Michael Hoffmeister
This software is licensed under the Eclipse Public License - v 2.0 (EPL-2.0) (see https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt).
The browser functionality is under the cefSharp license (see https://raw.githubusercontent.com/cefsharp/CefSharp/master/LICENSE).
The JSON serialization is under the MIT license (see https://github.com/JamesNK/Newtonsoft.Json/blob/master/LICENSE.md). */
namespace AasxPackageExplorer
{
/// <summary>
/// Interaktionslogik für FakeBrowser.xaml
/// </summary>
public partial class FakeBrowser : UserControl
{
public FakeBrowser()
{
InitializeComponent();
}
private string _address = "";
public string Address
{
get
{
return _address;
}
set
{
_address = value;
// distinct between local and global
Uri uri = null;
if (_address.Trim().ToLower().StartsWith("http://")
|| _address.Trim().ToLower().StartsWith("https://"))
{
uri = new Uri(_address, UriKind.RelativeOrAbsolute);
}
else
{
var path = System.IO.Path.Combine("", _address);
uri = new Uri(path);
}
// set it
theImage.Source = new BitmapImage(uri);
}
}
public double ZoomLevel = 1.0;
}
}