40795997dc
* plugin finally loading * simplify / clean up * Revit 2025 merges (#27) * fix DI project * get rid of warnings * never reverting this * VS2022 fixes --------- Co-authored-by: Connor Ivy <connor@speckle.systems> Co-authored-by: Adam Hathcock <adam@speckle.systems> Co-authored-by: Adam Hathcock <adamhathcock@users.noreply.github.com>
19 lines
718 B
XML
19 lines
718 B
XML
<Page x:Class="Speckle.Connectors.Revit.CefSharpPanel"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:cefSharp="clr-namespace:CefSharp.Wpf;assembly=CefSharp.Wpf"
|
|
xmlns:local="clr-namespace:Speckle.Connectors.DUI;assembly=Speckle.Connectors.DUI"
|
|
|
|
mc:Ignorable="d"
|
|
Title="Panel" Height="450" Width="800">
|
|
<Grid>
|
|
<cefSharp:ChromiumWebBrowser
|
|
Name="Browser"
|
|
Grid.Row="0"
|
|
Address="{x:Static local:Url.NetlifyString}" />
|
|
</Grid>
|
|
</Page>
|
|
|