-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBundleDialog.xaml
More file actions
18 lines (16 loc) · 879 Bytes
/
BundleDialog.xaml
File metadata and controls
18 lines (16 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<Window x:Class="BlazorCodeBehindUtil.BundleDialog"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="New Blazor Bundle" Height="220" Width="300"
WindowStartupLocation="CenterScreen" ResizeMode="NoResize" ShowInTaskbar="False">
<StackPanel Margin="20">
<Label Content="Component Name:"/>
<TextBox x:Name="ComponentNameInput" Margin="0,0,0,10" />
<StackPanel Orientation="Horizontal">
<CheckBox x:Name="CheckCS" Content=".cs" Margin="0,0,10,0"/>
<CheckBox x:Name="CheckCSS" Content=".css" Margin="0,0,10,0"/>
<CheckBox x:Name="CheckJS" Content=".js" />
</StackPanel>
<Button Content="Create Bundle" Margin="0,20,0,0" Click="Create_Click" IsDefault="True"/>
</StackPanel>
</Window>