MainWindow.xaml 847 B

12345678910111213
  1. <Window x:Class="UserFunctions.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="Custom Functions" Height="253" Width="270" ResizeMode="NoResize">
  8. <Grid>
  9. <Button Content="Run the designer" HorizontalAlignment="Left" Width="150" Margin="58,56,0,0" VerticalAlignment="Top" Click="Button_Click"/>
  10. <TextBlock HorizontalAlignment="Left" Margin="52,94,0,0" TextWrapping="Wrap" Text="Custom functions can be seen in the Data window under the &quot;Functions&quot; node." VerticalAlignment="Top" Height="57" Width="162"/>
  11. </Grid>
  12. </Window>