MainWindow.xaml 851 B

12345678910111213141516
  1. <Window x:Class="SAGY.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. mc:Ignorable="d"
  7. Title="上格云BIM" Height="300" Width="300">
  8. <Canvas>
  9. <Image Width="275" Height="225" Source="三维.jpg"></Image>
  10. <Label Canvas.Left="5" Canvas.Bottom="10" Content="请选择版本:"></Label>
  11. <ComboBox Name="CmbRevit" Canvas.Left="80" Canvas.Bottom="10" Width="100" Text="Revit2016"></ComboBox>
  12. <Button Canvas.Left="190" Canvas.Bottom="10" Content="启动" Width="80"
  13. Click="ButtonBase_OnClick"></Button>
  14. </Canvas>
  15. </Window>