Applying default xaml styler configs.
This commit is contained in:
@@ -39,9 +39,9 @@
|
||||
|
||||
<Viewbox Width="24">
|
||||
<controls:ImagePreviewControl
|
||||
SenderContactPicture="{x:Bind Base64ContactPicture}"
|
||||
FromAddress="{x:Bind Address}"
|
||||
FromName="{x:Bind Name}" />
|
||||
FromName="{x:Bind Name}"
|
||||
SenderContactPicture="{x:Bind Base64ContactPicture}" />
|
||||
</Viewbox>
|
||||
|
||||
<TextBlock
|
||||
@@ -456,9 +456,9 @@
|
||||
<ComboBox
|
||||
x:Name="AccountsComboBox"
|
||||
Grid.Column="1"
|
||||
DisplayMemberPath="AliasAddress"
|
||||
IsEditable="False"
|
||||
ItemsSource="{x:Bind ViewModel.AvailableAliases, Mode=OneWay}"
|
||||
DisplayMemberPath="AliasAddress"
|
||||
SelectedItem="{x:Bind ViewModel.SelectedAlias, Mode=TwoWay}" />
|
||||
|
||||
<!-- To -->
|
||||
|
||||
@@ -3,7 +3,6 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using CommunityToolkit.Mvvm.Messaging;
|
||||
using Microsoft.AppCenter.Analytics;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
using Microsoft.UI.Xaml.Controls;
|
||||
using MoreLinq;
|
||||
@@ -352,9 +351,6 @@ namespace Wino.Views
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
if (!isSelected)
|
||||
Analytics.TrackEvent("Mail Selection Failed");
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -31,8 +31,8 @@
|
||||
|
||||
<DataTemplate x:Key="InternetAddressTemplate" x:DataType="entities:AccountContact">
|
||||
<HyperlinkButton
|
||||
Padding="4,2"
|
||||
Margin="-2,-2"
|
||||
Padding="4,2"
|
||||
Command="{Binding ElementName=root, Path=ViewModel.CopyClipboardCommand}"
|
||||
CommandParameter="{x:Bind Address}"
|
||||
Content="{x:Bind DisplayName}" />
|
||||
@@ -229,9 +229,9 @@
|
||||
Width="36"
|
||||
Height="36"
|
||||
FontSize="16"
|
||||
SenderContactPicture="{x:Bind ViewModel.ContactPicture, Mode=OneWay}"
|
||||
FromAddress="{x:Bind ViewModel.FromAddress, Mode=OneWay}"
|
||||
FromName="{x:Bind ViewModel.FromName, Mode=OneWay}" />
|
||||
FromName="{x:Bind ViewModel.FromName, Mode=OneWay}"
|
||||
SenderContactPicture="{x:Bind ViewModel.ContactPicture, Mode=OneWay}" />
|
||||
|
||||
<Grid
|
||||
Grid.Column="1"
|
||||
@@ -239,8 +239,8 @@
|
||||
VerticalAlignment="Center">
|
||||
<StackPanel Spacing="1">
|
||||
<HyperlinkButton
|
||||
Padding="4,2"
|
||||
Margin="-6,-2"
|
||||
Padding="4,2"
|
||||
Command="{Binding ElementName=root, Path=ViewModel.CopyClipboardCommand}"
|
||||
CommandParameter="{x:Bind ViewModel.FromAddress, Mode=OneWay}"
|
||||
FontWeight="SemiBold">
|
||||
@@ -291,7 +291,7 @@
|
||||
</ItemsControl.ItemsPanel>
|
||||
</ItemsControl>
|
||||
</Grid>
|
||||
<Grid ColumnSpacing="6" Grid.Row="1">
|
||||
<Grid Grid.Row="1" ColumnSpacing="6">
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="Auto" />
|
||||
<ColumnDefinition Width="*" />
|
||||
@@ -363,11 +363,11 @@
|
||||
</ListView>
|
||||
|
||||
<HyperlinkButton
|
||||
Content="{x:Bind domain:Translator.Reader_SaveAllAttachmentButtonText}"
|
||||
Command="{x:Bind ViewModel.SaveAllAttachmentsCommand}"
|
||||
Visibility="{x:Bind ViewModel.HasMultipleAttachments, Mode=OneWay}"
|
||||
Grid.Column="1"
|
||||
VerticalAlignment="Center" />
|
||||
VerticalAlignment="Center"
|
||||
Command="{x:Bind ViewModel.SaveAllAttachmentsCommand}"
|
||||
Content="{x:Bind domain:Translator.Reader_SaveAllAttachmentButtonText}"
|
||||
Visibility="{x:Bind ViewModel.HasMultipleAttachments, Mode=OneWay}" />
|
||||
</Grid>
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user