Skip to content

Commit ad1b7c2

Browse files
authored
Merge pull request #2922 from MahApps/develop
MahApps.Metro dev to master v1.5.0
2 parents 324adee + ea71792 commit ad1b7c2

File tree

214 files changed

+7709
-4035
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

214 files changed

+7709
-4035
lines changed

docs/release-notes/1.5.0.md

Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
# 1.5.0 Notes
2+
3+
## Features / Changes / Fixes
4+
5+
- If a dialog is shown in a window other than the MainWindow, `OwningWindow` will be used if available to detect the theme. [#2840](https://github.com/MahApps/MahApps.Metro/pull/2840)
6+
- Fixed an issue for `DateTimePicker` when the time is cleared if a date is selected [#2837](https://github.com/MahApps/MahApps.Metro/pull/2837)
7+
- `HamburgerMenu` changes and improvements
8+
+ New `HamburgerMenuIconItem` helper class which can be used to put any object icon to the menu item.
9+
+ Fixed tab order and keyboard selection.
10+
+ `ItemCommand` and `OptionsItemCommand`
11+
+ `Command` for `HamburgerMenuItem`
12+
+ New property `PaneForeground` for HamburgerMenu and Splitview and new Foreground/Background brushes `MahApps.Metro.HamburgerMenu.PaneBackgroundBrush`, `MahApps.Metro.HamburgerMenu.PaneForegroundBrush`
13+
+ Update scroll behavior to match with the UWPCommunityToolkit (see UWP Toolkit Issue [#954](https://github.com/Microsoft/UWPCommunityToolkit/issues/954)).
14+
* Add a new dependency property `VerticalScrollBarOnLeftSide` to show the vertical scrollbar on the left side
15+
* Use a disappearing ScrollViewer
16+
+ Add `HamburgerVisibility` property [UWPCommunityToolkit #1020](https://github.com/Microsoft/UWPCommunityToolkit/pull/1020)
17+
+ Set `Content` for `HamburgerMenu` only if one of the inner ListBox controls has a selected item.
18+
+ New `HamburgerMenuHeaderTemplate` property to set a header right of the HamburgerMenu button. [@SilverDragon135](https://github.com/SilverDragon135) [#2917](https://github.com/MahApps/MahApps.Metro/pull/2917)
19+
+ Implement the interface `ICommandSource` and handle Command binding change to hook or unhook command executable.
20+
![mahapps_hamburgermenu_commands](https://cloud.githubusercontent.com/assets/658431/25019804/3f0822d8-208c-11e7-939c-72be28092a0e.gif)
21+
+ Add `MahApps.Metro.Styles.HamburgerMenu` style key to the HamburgerMenu.
22+
- If `ShowInTaskbar = false`, when double click on the title bar of a minimized window, the window will be restored instead of maximized. [#2854](https://github.com/MahApps/MahApps.Metro/pull/2854) [@hausenism](https://github.com/hausenism)
23+
- Fix WindowCommands tab stop bug [#2858](https://github.com/MahApps/MahApps.Metro/pull/2858) [@neilt6](https://github.com/neilt6)
24+
- Don't overwrite cancellation for window close event [#2868](https://github.com/MahApps/MahApps.Metro/pull/2868) [@batzen](https://github.com/batzen)
25+
- Expose close button margin for `MetroTabItem` [#2803](https://github.com/MahApps/MahApps.Metro/pull/2803)
26+
- New `Badged` control. Thx to [@ButchersBoy](https://github.com/ButchersBoy)
27+
![image](https://cloud.githubusercontent.com/assets/658431/23340345/d7dc4c86-fc34-11e6-838b-1ebee9381c7d.png)
28+
- The `ControlsHelper.CornerRadius` can now used for `SplitButton` and `DropDownButton`.
29+
- New underline types for `TabControl` and `MetroTabControl` [#2902](https://github.com/MahApps/MahApps.Metro/pull/2902)
30+
+ Adds a new `Underlined` attached property to `TabControlHelper` which controls the type of the underline type. The old `IsUnderlined` property is now obsolete.
31+
```
32+
/// <summary>
33+
/// Specifies the underline position of a TabControl.
34+
/// </summary>
35+
public enum UnderlinedType
36+
{
37+
None, // nothing
38+
TabItems, // the old behavior with `IsUnderlined="True"`
39+
SelectedTabItem, // selected TabItem underlined + underline hover effect for unselected items
40+
TabPanel // underlined TabPanel and selected/hovered TabItem
41+
}
42+
```
43+
+ Add also new `Brush` attached properties to enable easy changing the underline brushes.
44+
```
45+
TabControlHelper.UnderlineBrush
46+
TabControlHelper.UnderlineSelectedBrush
47+
TabControlHelper.UnderlineMouseOverBrush
48+
TabControlHelper.UnderlineMouseOverSelectedBrush
49+
```
50+
![mahapps_newunderline4](https://cloud.githubusercontent.com/assets/658431/24204520/0e6f3cbc-0f19-11e7-8a2b-f40752918a96.gif)
51+
- New underline types also for `AnimatedTabControl` and `AnimatedSingleRowTabControl` styles and for `MetroAnimatedTabControl` and `MetroAnimatedSingleRowTabControl` [#2905](https://github.com/MahApps/MahApps.Metro/pull/2905)
52+
- Fix / improve `AnimatedSingleRowTabControl` styles
53+
+ Fix template changing (doesn't works if TabStripPlacement was changed)
54+
+ Disappear arrow repeat buttons
55+
+ Use brush, hover and pressed brush like normal ScrollViewer
56+
- Fixed `ClearTypeHint` and wrong `Margin` for `ComboBox` and `ComboBoxItem` [#2903](https://github.com/MahApps/MahApps.Metro/issues/2903)
57+
- Fix `ListView` style issues
58+
+ Use accent brush for highlighted border
59+
+ Fix SnapsToDevicePixels usage
60+
+ Fix disabled foreground brush
61+
- Fix SnapsToDevicePixels usage for `CheckBox`
62+
- `Flyout` changes and improvements
63+
+ Fix `Flyout` modal usage. All title bar commands are now hidden if a `Flyout` is modal.
64+
+ Fix background and foreground usage of controls in a `Flyout` if user changes theme on the fly. [#2337](https://github.com/MahApps/MahApps.Metro/issues/2337) The `Flyout` has a different background, so we should override some background and foreground brushes and colors.
65+
+ Change `Flyout` from `ContentControl` to `HeaderedContentControl` which has the correct properties for headers.
66+
+ Enable `Border` for `Flyout`
67+
- Use `GrayBrush7` and `WhiteBrush` for menu `Separator` instead fixed colors.
68+
- Fix BindingExpression at `DropDownButton`. Don't set `ItemTemplate`to `ContentTemplate`, `ItemTemplateSelector` to `ContentTemplateSelector` and `ItemStringFormat` to `ContentStringFormat`. This breaks the whole usage of the content stuff and shows a BindingExpression path error. [#2883](https://github.com/MahApps/MahApps.Metro/issues/2883)
69+
- New `UsernameCharacterCasing` property for `LoginDialogSettings` [#2683](https://github.com/MahApps/MahApps.Metro/issues/2683)
70+
- Fix `SelectionChanged` event of `SplitButton` which fires now only once.
71+
- Add `TransitionCompleted` event to `MetroContentControl` and `WindowTransitionCompleted` event to `MetroWindow` which will be fired after the loaded Storyboard is completed.
72+
- Add new `WatermarkAlignment` attached property to `TextBoxHelper` which indicates the horizontal alignment of the watermark (incl. floating watermark).
73+
![mahapps_watermark](https://cloud.githubusercontent.com/assets/658431/25019759/14a50b28-208c-11e7-93cb-406fe8b65b7c.gif)
74+
- Add new `DataGridHelper` with `EnableCellEditAssist` attached property which enabled direct editing for CheckBox and ComboBox cells. (default to false) Thx to [@ButchersBoy](https://github.com/ButchersBoy) (taken from [MaterialDesignInXamlToolkit](https://github.com/ButchersBoy/MaterialDesignInXamlToolkit))
75+
76+
## Closed Issues
77+
78+
- [#2835](https://github.com/MahApps/MahApps.Metro/issues/2835) ShowMessageAnsync() causes exception
79+
- [#2848](https://github.com/MahApps/MahApps.Metro/issues/2848) HamburgerMenu Command MVVM
80+
- [#2866](https://github.com/MahApps/MahApps.Metro/issues/2866) Validation-Popup won't be opened after closing by mouse left button down
81+
- [#2870](https://github.com/MahApps/MahApps.Metro/issues/2870) MahApps Not Thread Safe But Should Be [Test Case]
82+
- [#2877](https://github.com/MahApps/MahApps.Metro/issues/2877) Can't bind to ShowTitleBar
83+
- [#2871](https://github.com/MahApps/MahApps.Metro/issues/2871) SplitButton CornerRadius
84+
- [#2862](https://github.com/MahApps/MahApps.Metro/issues/2862) Flyout close button icon is incorrect when setting flow direction right to left
85+
- [#1938](https://github.com/MahApps/MahApps.Metro/issues/1938) Problem with window size
86+
- [#2066](https://github.com/MahApps/MahApps.Metro/issues/2066) On Windows 8 a window with height 23px resizes to 39px after dragging
87+
- [#2792](https://github.com/MahApps/MahApps.Metro/issues/2792) Win32Exception on closing window
88+
- [#2886](https://github.com/MahApps/MahApps.Metro/issues/2886) NumericUpDown: HasDecimals=False & using a bound StringFormat allows to enter a decimal point [@davericardo](https://github.com/davericardo)
89+
- [#2885](https://github.com/MahApps/MahApps.Metro/issues/2885) [Bug] Badged Control Causes Window Loading to Hang
90+
- [#2895](https://github.com/MahApps/MahApps.Metro/issues/2895) [RFC] [Enhancement] Proposed TabControlHelper.IsUnderlined Change
91+
- [#2903](https://github.com/MahApps/MahApps.Metro/issues/2903) 1 pixel space between ComboBoxItems closes ComboBox
92+
- [#2841](https://github.com/MahApps/MahApps.Metro/issues/2841) Modal flyout issue
93+
- [#2337](https://github.com/MahApps/MahApps.Metro/issues/2337) Flyout style from Accent to Light is not working
94+
- [#2883](https://github.com/MahApps/MahApps.Metro/issues/2883) Can Reproduce BindingExpression path error: ... property not found ... On DropDownButton
95+
- [#2683](https://github.com/MahApps/MahApps.Metro/issues/2683) [Question] Force TextBox uppercase in ShowLoginAsync
96+
- [#2857](https://github.com/MahApps/MahApps.Metro/issues/2857) HamburgerMenuItem Scrolling
97+
- [#1835](https://github.com/MahApps/MahApps.Metro/issues/1835) Window animation interferes with WindowsFormsHost positioning
98+
- [#2917](https://github.com/MahApps/MahApps.Metro/pull/2917) Hamburger Header Templating
99+
- [#2332](https://github.com/MahApps/MahApps.Metro/issues/2332) Calendar ignores IsTodayHighlighted property
100+
- [#2434](https://github.com/MahApps/MahApps.Metro/issues/2434) DataGridNumericUpDownColumn foreground color
101+
- [#2627](https://github.com/MahApps/MahApps.Metro/issues/2627) Inconsistent FloatingWatermark Alignment
102+
- [#2865](https://github.com/MahApps/MahApps.Metro/issues/2865) [Feature request]Enable/Disable of Hamburger Menu Item
103+
- [#2880](https://github.com/MahApps/MahApps.Metro/issues/2880) RangeSlider: Inadequate snapping to ticks
104+
- [#2812](https://github.com/MahApps/MahApps.Metro/issues/2812) Font family in Flyout.xaml and MetroNavigationWindow.xaml
105+
- [#2764](https://github.com/MahApps/MahApps.Metro/issues/2764) Flyout - Border not shown
106+
- [#2515](https://github.com/MahApps/MahApps.Metro/issues/2515) NumericUpDown Value not displayed
107+
- [#1929](https://github.com/MahApps/MahApps.Metro/issues/1929) MetroDataGridCheckBox style prevents the CellEditEnding

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ A toolkit for creating metro-style WPF applications. Lots of goodness out-of-the
1111
[![NuGetPre](https://img.shields.io/nuget/vpre/MahApps.Metro.svg?style=flat-square)](https://www.nuget.org/packages/MahApps.Metro/)
1212
[![Issues](https://img.shields.io/github/issues/MahApps/MahApps.Metro.svg?style=flat-square)](https://github.com/MahApps/MahApps.Metro/issues)
1313

14-
[![TeamCity](https://img.shields.io/teamcity/http/builds.brendanforster.com/s/MahApps_MahAppsMetroDevelopAlpha.svg?style=flat-square&&label=TeamCity%20dev)]()
15-
[![TeamCity](https://img.shields.io/teamcity/http/builds.brendanforster.com/s/MahApps_MahAppsMetroPullRequests.svg?style=flat-square&&label=TeamCity%20PRs)]()
14+
[![TeamCity](https://img.shields.io/teamcity/http/builds.brendanforster.com/s/MahApps_MahAppsMetroDevelopAlpha.svg?style=flat-square&&label=TeamCity%20dev)](http://builds.brendanforster.com/viewType.html?buildTypeId=MahApps_MahAppsMetroDevelopAlpha)
15+
[![TeamCity](https://img.shields.io/teamcity/http/builds.brendanforster.com/s/MahApps_MahAppsMetroPullRequests.svg?style=flat-square&&label=TeamCity%20PRs)](http://builds.brendanforster.com/viewType.html?buildTypeId=MahApps_MahAppsMetroPullRequests)
1616

1717
## Want to say thanks?
1818

src/.paket/paket.exe

127 KB
Binary file not shown.

src/MahApps.Metro.Build/MahApps.Metro.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
33
<metadata>
44
<id>MahApps.Metro</id>
5-
<version>1.4.3.0</version>
5+
<version>1.5.0.0</version>
66
<title>MahApps.Metro</title>
77
<authors>Jan Karger, Dennis Daume, Brendan Forster, Paul Jenkins, Jake Ginnivan, Alex Mitchell</authors>
88
<owners>punker76,shiftkey,aeoth,jakeginnivan</owners>

src/MahApps.Metro.Samples/MahApps.Metro.Caliburn.Demo/MahApps.Metro.Caliburn.Demo.NET40/MahApps.Metro.Caliburn.Demo.NET40.csproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -126,13 +126,13 @@
126126
</When>
127127
<When Condition="$(TargetFrameworkIdentifier) == '.NETFramework' And ($(TargetFrameworkVersion) == 'v4.5' Or $(TargetFrameworkVersion) == 'v4.5.1' Or $(TargetFrameworkVersion) == 'v4.5.2' Or $(TargetFrameworkVersion) == 'v4.5.3' Or $(TargetFrameworkVersion) == 'v4.6' Or $(TargetFrameworkVersion) == 'v4.6.1' Or $(TargetFrameworkVersion) == 'v4.6.2' Or $(TargetFrameworkVersion) == 'v4.6.3')">
128128
<ItemGroup>
129-
<Reference Include="Caliburn.Micro.Platform.Core">
130-
<HintPath>..\..\..\packages\Caliburn.Micro\lib\net45\Caliburn.Micro.Platform.Core.dll</HintPath>
129+
<Reference Include="Caliburn.Micro.Platform">
130+
<HintPath>..\..\..\packages\Caliburn.Micro\lib\net45\Caliburn.Micro.Platform.dll</HintPath>
131131
<Private>True</Private>
132132
<Paket>True</Paket>
133133
</Reference>
134-
<Reference Include="Caliburn.Micro.Platform">
135-
<HintPath>..\..\..\packages\Caliburn.Micro\lib\net45\Caliburn.Micro.Platform.dll</HintPath>
134+
<Reference Include="Caliburn.Micro.Platform.Core">
135+
<HintPath>..\..\..\packages\Caliburn.Micro\lib\net45\Caliburn.Micro.Platform.Core.dll</HintPath>
136136
<Private>True</Private>
137137
<Paket>True</Paket>
138138
</Reference>
@@ -231,8 +231,8 @@
231231
<Reference Include="System.Net">
232232
<Paket>True</Paket>
233233
</Reference>
234-
<Reference Include="Microsoft.Threading.Tasks.Extensions.Desktop">
235-
<HintPath>..\..\..\packages\Microsoft.Bcl.Async\lib\net40\Microsoft.Threading.Tasks.Extensions.Desktop.dll</HintPath>
234+
<Reference Include="Microsoft.Threading.Tasks">
235+
<HintPath>..\..\..\packages\Microsoft.Bcl.Async\lib\net40\Microsoft.Threading.Tasks.dll</HintPath>
236236
<Private>True</Private>
237237
<Paket>True</Paket>
238238
</Reference>
@@ -241,8 +241,8 @@
241241
<Private>True</Private>
242242
<Paket>True</Paket>
243243
</Reference>
244-
<Reference Include="Microsoft.Threading.Tasks">
245-
<HintPath>..\..\..\packages\Microsoft.Bcl.Async\lib\net40\Microsoft.Threading.Tasks.dll</HintPath>
244+
<Reference Include="Microsoft.Threading.Tasks.Extensions.Desktop">
245+
<HintPath>..\..\..\packages\Microsoft.Bcl.Async\lib\net40\Microsoft.Threading.Tasks.Extensions.Desktop.dll</HintPath>
246246
<Private>True</Private>
247247
<Paket>True</Paket>
248248
</Reference>

src/MahApps.Metro.Samples/MahApps.Metro.Caliburn.Demo/MahApps.Metro.Caliburn.Demo.NET45/MahApps.Metro.Caliburn.Demo.NET45.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -124,13 +124,13 @@
124124
</When>
125125
<When Condition="$(TargetFrameworkIdentifier) == '.NETFramework' And ($(TargetFrameworkVersion) == 'v4.5' Or $(TargetFrameworkVersion) == 'v4.5.1' Or $(TargetFrameworkVersion) == 'v4.5.2' Or $(TargetFrameworkVersion) == 'v4.5.3' Or $(TargetFrameworkVersion) == 'v4.6' Or $(TargetFrameworkVersion) == 'v4.6.1' Or $(TargetFrameworkVersion) == 'v4.6.2' Or $(TargetFrameworkVersion) == 'v4.6.3')">
126126
<ItemGroup>
127-
<Reference Include="Caliburn.Micro.Platform.Core">
128-
<HintPath>..\..\..\packages\Caliburn.Micro\lib\net45\Caliburn.Micro.Platform.Core.dll</HintPath>
127+
<Reference Include="Caliburn.Micro.Platform">
128+
<HintPath>..\..\..\packages\Caliburn.Micro\lib\net45\Caliburn.Micro.Platform.dll</HintPath>
129129
<Private>True</Private>
130130
<Paket>True</Paket>
131131
</Reference>
132-
<Reference Include="Caliburn.Micro.Platform">
133-
<HintPath>..\..\..\packages\Caliburn.Micro\lib\net45\Caliburn.Micro.Platform.dll</HintPath>
132+
<Reference Include="Caliburn.Micro.Platform.Core">
133+
<HintPath>..\..\..\packages\Caliburn.Micro\lib\net45\Caliburn.Micro.Platform.Core.dll</HintPath>
134134
<Private>True</Private>
135135
<Paket>True</Paket>
136136
</Reference>

src/MahApps.Metro.Samples/MahApps.Metro.Caliburn.Demo/MahApps.Metro.Caliburn.Demo.Shared/Resources/Theme1.xaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
2-
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
1+
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
32
<ResourceDictionary.MergedDictionaries>
43
<ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Controls.xaml" />
54
<ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Fonts.xaml" />

src/MahApps.Metro.Samples/MahApps.Metro.Caliburn.Demo/MahApps.Metro.Caliburn.Demo.Shared/Views/Flyouts/Flyout1View.xaml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
xmlns:Controls="clr-namespace:MahApps.Metro.Controls;assembly=MahApps.Metro"
55
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
66
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
7-
mc:Ignorable="d"
87
d:DesignHeight="300"
9-
d:DesignWidth="300">
8+
d:DesignWidth="300"
9+
mc:Ignorable="d">
1010

1111
<Grid Margin="24">
1212
<Grid.RowDefinitions>
@@ -19,22 +19,22 @@
1919
<ScrollViewer Grid.Row="1" VerticalScrollBarVisibility="Auto">
2020
<StackPanel Orientation="Vertical">
2121
<TextBox Controls:TextBoxHelper.Watermark="TextBox 01" />
22-
<TextBox Margin="0,5,0,0" Controls:TextBoxHelper.Watermark="TextBox 02" />
23-
<TextBox Margin="0,5,0,0" Controls:TextBoxHelper.Watermark="TextBox 03" />
24-
<TextBox Margin="0,5,0,0" Controls:TextBoxHelper.Watermark="TextBox 04" />
25-
<TextBox Margin="0,5,0,0" Controls:TextBoxHelper.Watermark="TextBox 05" />
26-
<TextBox Margin="0,5,0,0" Controls:TextBoxHelper.Watermark="TextBox 06" />
27-
<TextBox Margin="0,5,0,0" Controls:TextBoxHelper.Watermark="TextBox 07" />
28-
<TextBox Margin="0,5,0,0" Controls:TextBoxHelper.Watermark="TextBox 08" />
29-
<TextBox Margin="0,5,0,0" Controls:TextBoxHelper.Watermark="TextBox 09" />
30-
<TextBox Margin="0,5,0,0" Controls:TextBoxHelper.Watermark="TextBox 10" />
22+
<TextBox Margin="0 5 0 0" Controls:TextBoxHelper.Watermark="TextBox 02" />
23+
<TextBox Margin="0 5 0 0" Controls:TextBoxHelper.Watermark="TextBox 03" />
24+
<TextBox Margin="0 5 0 0" Controls:TextBoxHelper.Watermark="TextBox 04" />
25+
<TextBox Margin="0 5 0 0" Controls:TextBoxHelper.Watermark="TextBox 05" />
26+
<TextBox Margin="0 5 0 0" Controls:TextBoxHelper.Watermark="TextBox 06" />
27+
<TextBox Margin="0 5 0 0" Controls:TextBoxHelper.Watermark="TextBox 07" />
28+
<TextBox Margin="0 5 0 0" Controls:TextBoxHelper.Watermark="TextBox 08" />
29+
<TextBox Margin="0 5 0 0" Controls:TextBoxHelper.Watermark="TextBox 09" />
30+
<TextBox Margin="0 5 0 0" Controls:TextBoxHelper.Watermark="TextBox 10" />
3131
</StackPanel>
3232
</ScrollViewer>
3333

3434
<StackPanel Grid.Row="2"
35-
Margin="0,5,0,0"
35+
Margin="0 5 0 0"
3636
Orientation="Horizontal">
37-
<Button Margin="0,0,10,0" Content="create" />
37+
<Button Margin="0 0 10 0" Content="create" />
3838
<Button Content="cancel" />
3939
</StackPanel>
4040

src/MahApps.Metro.Samples/MahApps.Metro.Caliburn.Demo/MahApps.Metro.Caliburn.Demo.Shared/Views/Flyouts/Flyout2View.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
44
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
55
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
6-
mc:Ignorable="d"
76
d:DesignHeight="300"
8-
d:DesignWidth="300">
7+
d:DesignWidth="300"
8+
mc:Ignorable="d">
99

1010
<StackPanel Orientation="Vertical">
1111
<Button Content="create" />

src/MahApps.Metro.Samples/MahApps.Metro.Caliburn.Demo/MahApps.Metro.Caliburn.Demo.Shared/Views/Flyouts/Flyout3View.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
55
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
66
Width="250"
7-
mc:Ignorable="d"
87
d:DesignHeight="300"
9-
d:DesignWidth="300">
8+
d:DesignWidth="300"
9+
mc:Ignorable="d">
1010

1111
<UserControl.Resources>
1212
<ResourceDictionary>

0 commit comments

Comments
 (0)