- <Window x:Class="SAGY.Revit.MainWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- mc:Ignorable="d"
- Title="上格云BIM" Height="300" Width="300">
- <Canvas>
- <Image Width="275" Height="225" Source="三维.jpg"></Image>
- <Label Canvas.Left="5" Canvas.Bottom="10" Content="请选择版本:"></Label>
- <ComboBox Name="CmbRevit" Canvas.Left="80" Canvas.Bottom="10" Width="100" Text="Revit2016"></ComboBox>
- <Button Canvas.Left="190" Canvas.Bottom="10" Content="启动" Width="80"
- Click="ButtonBase_OnClick"></Button>
- </Canvas>
- </Window>
|