1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
dln 15534713ba 0024699: Visualization - prototype interoperation of TKOpenGl viewer with Direct3D viewer
Add new C# sample which allow to render the OCCT scene to a Direct3D context in a WPF application.
DirectX SDK is required in order to build this sample.
2014-10-10 15:06:42 +04:00

18 lines
839 B
XML

<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="IE_WPF_WinForms.AboutDialog"
x:Name="Window"
xmlns:local="clr-namespace:IE_WPF_WinForms"
Title="About Import/Export Sample"
Width="312" Height="285">
<StackPanel Orientation="Vertical">
<Label Content="Import/Export Sample," HorizontalAlignment="Center"/>
<Label Content="Open CASCADE Technology " HorizontalAlignment="Center"/>
<Image Source="occ_logo.bmp" Width="194" Height="100" />
<Label Content="Copyright (C) 2004-2013, Open CASCADE S.A.S" HorizontalAlignment="Center"/>
<Label Content="http://www.opencascade.com" HorizontalAlignment="Center"/>
<Button Content="OK" HorizontalAlignment="Center" Width="75" Command="local:IECommands.AboutOk"/>
</StackPanel>
</Window>