Skip to content

Commit ed0e97a

Browse files
Fix trimming issue with published binaries
1 parent d0ae3a7 commit ed0e97a

File tree

6 files changed

+13
-1
lines changed

6 files changed

+13
-1
lines changed

WatchOnlyBitcoinWallet/Views/AboutView.axaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
44
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
55
xmlns:vm="using:WatchOnlyBitcoinWallet.ViewModels"
6+
x:CompileBindings="True"
7+
x:DataType="vm:AboutViewModel"
68
mc:Ignorable="d"
79
x:Class="WatchOnlyBitcoinWallet.Views.AboutView"
810
Height="285" Width="300"

WatchOnlyBitcoinWallet/Views/AddEditView.axaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
44
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
55
xmlns:vm="using:WatchOnlyBitcoinWallet.ViewModels"
6+
x:CompileBindings="True"
7+
x:DataType="vm:AddEditViewModel"
68
mc:Ignorable="d"
79
x:Class="WatchOnlyBitcoinWallet.Views.AddEditView"
810
Height="110" Width="480"

WatchOnlyBitcoinWallet/Views/ForkBalanceView.axaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
55
xmlns:vm="clr-namespace:WatchOnlyBitcoinWallet.ViewModels"
66
xmlns:models="using:WatchOnlyBitcoinWallet.Models"
7+
x:CompileBindings="True"
8+
x:DataType="vm:ForkBalanceViewModel"
79
mc:Ignorable="d"
810
x:Class="WatchOnlyBitcoinWallet.Views.ForkBalanceView"
911
Height="300" Width="600"

WatchOnlyBitcoinWallet/Views/ImportView.axaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
44
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
55
xmlns:vm="clr-namespace:WatchOnlyBitcoinWallet.ViewModels"
6+
x:CompileBindings="True"
7+
x:DataType="vm:ImportViewModel"
68
mc:Ignorable="d"
79
x:Class="WatchOnlyBitcoinWallet.Views.ImportView"
810
Height="350" Width="460"
@@ -34,7 +36,7 @@
3436
Margin="3"
3537
Grid.ColumnSpan="2" Grid.Row="1"/>
3638

37-
<TextBlock Text="{Binding Errors}"
39+
<TextBlock Text="{Binding Error}"
3840
TextWrapping="Wrap"
3941
Grid.ColumnSpan="2" Grid.Row="2"/>
4042
</Grid>

WatchOnlyBitcoinWallet/Views/MessageBoxView.axaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
44
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
55
xmlns:vm="clr-namespace:WatchOnlyBitcoinWallet.ViewModels"
6+
x:CompileBindings="True"
7+
x:DataType="vm:MessageBoxViewModel"
68
mc:Ignorable="d"
79
MaxWidth="400"
810
x:Class="WatchOnlyBitcoinWallet.Views.MessageBoxView">

WatchOnlyBitcoinWallet/Views/SettingsView.axaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
44
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
55
xmlns:vm="using:WatchOnlyBitcoinWallet.ViewModels"
6+
x:CompileBindings="True"
7+
x:DataType="vm:SettingsViewModel"
68
mc:Ignorable="d"
79
x:Class="WatchOnlyBitcoinWallet.Views.SettingsView"
810
Height="278" Width="300"

0 commit comments

Comments
 (0)