MainWindow.xaml 898 B

1234567891011121314151617
  1. <Window x:Class="SAGA.Revit.MainWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:SAGA.Revit"
  7. mc:Ignorable="d"
  8. Title="上格云BIM" Height="300" Width="300">
  9. <Canvas>
  10. <Image Width="275" Height="225" Source="三维.jpg"></Image>
  11. <Label Canvas.Left="5" Canvas.Bottom="10" Content="请选择版本:"></Label>
  12. <ComboBox Name="CmbRevit" Canvas.Left="80" Canvas.Bottom="10" Width="100" Text="Revit2016"></ComboBox>
  13. <Button Canvas.Left="190" Canvas.Bottom="10" Content="启动" Width="80"
  14. Click="ButtonBase_OnClick"></Button>
  15. </Canvas>
  16. </Window>