Skip to content

Commit

Permalink
fix wpf xaml missing (#1855)
Browse files Browse the repository at this point in the history
* fix wpf xaml missing

* fix 2 space
  • Loading branch information
chuongmep authored Nov 16, 2022
1 parent 0cbd744 commit 2242d3d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 18 deletions.
3 changes: 0 additions & 3 deletions DesktopUI2/DesktopUI2/Views/Pages/NotificationsView.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:assists="clr-namespace:Material.Styles.Assists;assembly=Material.Styles"
xmlns:conv="clr-namespace:DesktopUI2.Views.Converters"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:dvm="clr-namespace:DesktopUI2.ViewModels.DesignViewModels"
xmlns:icons="clr-namespace:Material.Icons.Avalonia;assembly=Material.Icons.Avalonia"
Expand Down Expand Up @@ -100,9 +99,7 @@
Grid.Column="2"
VerticalAlignment="Center"
Command="{Binding LaunchCommand, FallbackValue={x:Null}}"
Content="SEE"
ToolTip.Tip="View">

<Button.Content>
<icons:MaterialIcon
Width="20"
Expand Down
9 changes: 0 additions & 9 deletions DesktopUI2/DesktopUI2/Views/Pages/OneClickView.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,10 @@
xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:assists="clr-namespace:Material.Styles.Assists;assembly=Material.Styles"
xmlns:c="clr-namespace:DesktopUI2.Views.Controls"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:dvm="clr-namespace:DesktopUI2.ViewModels.DesignViewModels"
xmlns:icons="clr-namespace:Material.Icons.Avalonia;assembly=Material.Icons.Avalonia"
xmlns:local="clr-namespace:DesktopUI2.Views.Pages"
xmlns:m="clr-namespace:Material.Styles;assembly=Material.Styles"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:ripple="clr-namespace:Material.Ripple;assembly=Material.Ripple"
xmlns:sc="clr-namespace:DesktopUI2.Views.Pages.SharedControls"
xmlns:uc="clr-namespace:DesktopUI2.Views.Pages.HomeControls"
xmlns:vm="clr-namespace:DesktopUI2.ViewModels"
d:DesignHeight="550"
d:DesignWidth="400"
mc:Ignorable="d">
Expand Down Expand Up @@ -271,7 +264,6 @@
HorizontalAlignment="Center"
Background="White"
Command="{Binding ViewOnlineCommand}"
Content="Cancel"
CornerRadius="25"
Foreground="{DynamicResource PrimaryHueMidBrush}">
<Grid Margin="0" ColumnDefinitions="auto,*">
Expand Down Expand Up @@ -310,7 +302,6 @@
HorizontalAlignment="Center"
Classes="Flat"
Command="{Binding CopyCommand}"
Content="Cancel"
CornerRadius="25"
Foreground="White">
<Grid Margin="0" ColumnDefinitions="auto,*">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,10 @@
xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:assists="clr-namespace:Material.Styles.Assists;assembly=Material.Styles"
xmlns:conv="clr-namespace:DesktopUI2.Views.Converters"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:dvm="clr-namespace:DesktopUI2.ViewModels.DesignViewModels"
xmlns:icons="clr-namespace:Material.Icons.Avalonia;assembly=Material.Icons.Avalonia"
xmlns:m="clr-namespace:Material.Styles;assembly=Material.Styles"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:uc="clr-namespace:DesktopUI2.Views.Pages.StreamEditControls"
xmlns:vm="clr-namespace:DesktopUI2.ViewModels"
d:DesignHeight="550"
d:DesignWidth="400"
Expand Down Expand Up @@ -87,7 +84,7 @@
CornerRadius="5">
<ScrollViewer Grid.Row="1" VerticalScrollBarVisibility="Auto">
<StackPanel>
<ListBox Items="{Binding LoadedFamilies}" SelectedItem="{Binding SelectedFamily,Mode=TwoWay}" />
<ListBox Items="{Binding LoadedFamilies}" SelectedItem="{Binding SelectedFamily, Mode=TwoWay}" />
</StackPanel>
</ScrollViewer>
</Border>
Expand Down Expand Up @@ -166,7 +163,7 @@
<Grid ColumnDefinitions="auto,*">
<CheckBox
Margin="3,0,0,0"
IsChecked="{Binding isChecked,Mode=TwoWay}"
IsChecked="{Binding isChecked, Mode=TwoWay}"
IsVisible="{Binding !isImported}" />
<icons:MaterialIcon
Grid.Row="0"
Expand Down Expand Up @@ -232,7 +229,7 @@
<Grid ColumnDefinitions="auto,*">
<CheckBox
Margin="10,0,0,0"
IsChecked="{Binding isChecked,Mode=TwoWay}"
IsChecked="{Binding isChecked, Mode=TwoWay}"
IsVisible="{Binding !isImported}" />
<icons:MaterialIcon
Grid.Row="0"
Expand Down

0 comments on commit 2242d3d

Please sign in to comment.