Skip to content

Commit 544ef51

Browse files
author
Jan Wiesemann
authored
Merge branch 'develop' into issue3155
2 parents edec044 + 9fb301e commit 544ef51

File tree

286 files changed

+20056
-17713
lines changed

Some content is hidden

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

286 files changed

+20056
-17713
lines changed

CODE_OF_CONDUCT.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Contributor Covenant Code of Conduct
2+
3+
## Our Pledge
4+
5+
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
6+
7+
## Our Standards
8+
9+
Examples of behavior that contributes to creating a positive environment include:
10+
11+
* Using welcoming and inclusive language
12+
* Being respectful of differing viewpoints and experiences
13+
* Gracefully accepting constructive criticism
14+
* Focusing on what is best for the community
15+
* Showing empathy towards other community members
16+
17+
Examples of unacceptable behavior by participants include:
18+
19+
* The use of sexualized language or imagery and unwelcome sexual attention or advances
20+
* Trolling, insulting/derogatory comments, and personal or political attacks
21+
* Public or private harassment
22+
* Publishing others' private information, such as a physical or electronic address, without explicit permission
23+
* Other conduct which could reasonably be considered inappropriate in a professional setting
24+
25+
## Our Responsibilities
26+
27+
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
28+
29+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
30+
31+
## Scope
32+
33+
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
34+
35+
## Enforcement
36+
37+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at [email protected]. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
38+
39+
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
40+
41+
## Attribution
42+
43+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
44+
45+
[homepage]: http://contributor-covenant.org
46+
[version]: http://contributor-covenant.org/version/1/4/

GitVersion.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
assembly-versioning-scheme: MajorMinorPatchTag
2+
mode: ContinuousDeployment
3+
next-version: 1.6.0
4+
branches:
5+
master:
6+
mode: ContinuousDeployment
7+
tag: rc
8+
increment: Patch
9+
prevent-increment-of-merged-branch-version: true
10+
track-merge-target: false
11+
develop:
12+
mode: ContinuousDeployment
13+
tag: alpha
14+
increment: Minor
15+
prevent-increment-of-merged-branch-version: false
16+
track-merge-target: true
17+
pull-request:
18+
mode: ContinuousDelivery
19+
ignore:
20+
sha: []

appveyor.yml

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
# configuration for develop/CI branch
2+
3+
-
4+
branches:
5+
only:
6+
- develop
7+
8+
skip_tags: true
9+
image: Visual Studio 2017
10+
configuration: Release
11+
platform: Any CPU
12+
13+
pull_requests:
14+
do_not_increment_build_number: false
15+
16+
install:
17+
- choco install gitversion.portable -pre -y
18+
19+
before_build:
20+
- ps: cd src
21+
- ps: .paket\paket restore
22+
- ps: cd..
23+
- ps: gitversion /l console /output buildserver /updateAssemblyInfo
24+
25+
build:
26+
verbosity: minimal
27+
28+
after_build:
29+
- ps: cd src
30+
- ps: .paket\paket pack --version $env:GitVersion_LegacySemVerPadded bin
31+
- ps: cd..
32+
33+
cache:
34+
- src\packages -> **\packages.config
35+
# - '%USERPROFILE%\.nuget\packages -> **\project.json'
36+
37+
artifacts:
38+
- path: \src\bin\MahApps.Metro.*.nupkg
39+
- path: \src\bin\MetroDemo\
40+
name: MetroDemo.$(GitVersion_LegacySemVerPadded)
41+
type: zip
42+
43+
# configuration for master/Release branch
44+
-
45+
branches:
46+
only:
47+
- master
48+
49+
skip_tags: true
50+
image: Visual Studio 2017
51+
configuration: Release
52+
platform: Any CPU
53+
54+
install:
55+
- choco install gitversion.portable -pre -y
56+
57+
before_build:
58+
- ps: cd src
59+
- ps: .paket\paket restore
60+
- ps: cd..
61+
- ps: gitversion /l console /output buildserver /updateAssemblyInfo
62+
63+
build:
64+
verbosity: minimal
65+
66+
after_build:
67+
- ps: cd src
68+
- ps: .paket\paket pack --version $env:GitVersion_LegacySemVerPadded bin
69+
- ps: cd..
70+
71+
cache:
72+
- src\packages -> **\packages.config
73+
# - '%USERPROFILE%\.nuget\packages -> **\project.json'
74+
75+
artifacts:
76+
- path: \src\bin\MahApps.Metro.*.nupkg
77+
- path: \src\bin\MetroDemo\
78+
name: MetroDemo.$(GitVersion_LegacySemVerPadded)
79+
type: zip

docs/new_project_dialog.png

-64 KB
Binary file not shown.

docs/release-notes/1.6.0.md

Lines changed: 136 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,136 @@
1+
# 1.6.0 Notes
2+
3+
## Features / Changes / Fixes
4+
5+
- Change `IsPaneOpen` property of `HamburgerMenu` to `FrameworkPropertyMetadataOptions.BindsTwoWayByDefault`. [#2926](https://github.com/MahApps/MahApps.Metro/issues/2926)
6+
- Add ContentStringFormat / ContentTemplateSelector to ContentPresenter of `RadioButton`. [#2954](https://github.com/MahApps/MahApps.Metro/pull/2954) [@pmccowat](https://github.com/pmccowat)
7+
- Add ContentStringFormat / ContentTemplateSelector to ContentPresenter of `CheckBox`.
8+
- DisplayFormat for time and date in DateTimePicker and TimePicker [#2930](https://github.com/MahApps/MahApps.Metro/pull/2930) [@xxMUROxx](https://github.com/xxMUROxx)
9+
- Inherit FontFamily and FontSize for `CalendarDayButton` and `CalendarButton` from `Calendar`.
10+
- It is now possibile to set FontFamily and FontSize to `DateTimePicker` / `TimePicker`. [#2935](https://github.com/MahApps/MahApps.Metro/pull/2935) [@xxMUROxx](https://github.com/xxMUROxx)
11+
- New `MahApps.Metro.Styles.MetroWatermarkTextBlock` style. Makes it easier to set custom properties like FontFamily or FontSize for all Watermarks.
12+
- Enable `LayoutTransform` and `RenderTransform` on `MetroWindow` [#2991](https://github.com/MahApps/MahApps.Metro/pull/2991) [@batzen](https://github.com/batzen)
13+
- Fixing a few issues in `ThemeManager` [#2992](https://github.com/MahApps/MahApps.Metro/pull/2992) [@batzen](https://github.com/batzen)
14+
+ ThemeManager did not look at merged dictionaries the way WPF did. WPF looks at them in a reverse order and so should we.
15+
+ StringComparison should be OrdinalIgnoreCase
16+
+ Added some missing documentation
17+
+ Removed "metro" from documentation to ease sharing of code with Fluent.Ribbon
18+
- Fix WPF-BindingLeak: Bind to property of non `INotifyPropertyChanged` (`BorderThickness`) without using `BindingMode.OneTime` [#2997](https://github.com/MahApps/MahApps.Metro/pull/2997) [@xxMUROxx](https://github.com/xxMUROxx)
19+
- [2c97fd4](https://github.com/MahApps/MahApps.Metro/commit/2c97fd4e14a295b6d00a24043609d475686b41d9) Fix brushes for MetroProgressBar
20+
- [5c4471c](https://github.com/MahApps/MahApps.Metro/commit/5c4471c3a4922294662815d02ca005d9ed06d3d9) Use DynamicResource for all brushes and freeze it too.
21+
- [8c0f893](https://github.com/MahApps/MahApps.Metro/commit/8c0f893f45748b558afd6557caa8883a779ffb7e) Fix MetroProgressBar does not work inside ControlTemplate
22+
- Fix a typo that stops users from setting the `CloseButtonMargin` property of `MetroTabItem`. [#3019](https://github.com/MahApps/MahApps.Metro/pull/3019) [@5pyd3r](https://github.com/5pyd3r)
23+
- Replacing `WindowChrome` and related things with reference to `ControlzEx` [#3021](https://github.com/MahApps/MahApps.Metro/pull/3021)
24+
- Add new property `SnapToMultipleOfInterval` to `NumericUpDown` which indicates if the `NumericUpDown` should round the value to the nearest possible interval when the focus moves to another element. [#2952](https://github.com/MahApps/MahApps.Metro/issues/2952) [@xxMUROxx](https://github.com/xxMUROxx)
25+
- It's now possible to change the popup border thickness and padding for `ComboBox`. So there are 3 new resource keys added. [#3025](https://github.com/MahApps/MahApps.Metro/issues/3025)
26+
+ `ComboBoxBorderThemeThickness` (default 1)
27+
+ `ComboBoxPopupBorderThemeThickness` (default 1)
28+
+ `ComboBoxPopupBorderThemePadding` (default 1)
29+
- It's now easier to change the header padding for `GroupBox` and `Expander`, so new resource keys are available
30+
+ `GroupBoxHeaderThemePadding` (default 4)
31+
+ `ExpanderHeaderThemePadding` (default 2)
32+
+ `ExpanderToggleButtonEllipseThemeSize` (default 18)
33+
- Fix not updating the text of `TimePicker` and `DateTimePicker` after changing the culture.
34+
- `Badged` control has now a different look when disabled. thx [@xxMUROxx](https://github.com/xxMUROxx)
35+
+ Adds new brush to light and dark themes `MahApps.Metro.Brushes.Badged.DisabledBackgroundBrush`
36+
- Don't catch `TextChangedEvent` in `NumericUpDown` [#3066](https://github.com/MahApps/MahApps.Metro/pull/3066) [@Silv3rcircl3](https://github.com/Silv3rcircl3)
37+
- `Watermark` fixes and improvements
38+
+ Fix right aligned floating watermark.
39+
+ Use `TextBoxHelper.Watermark` for `HotKeyBox` instead own DependencyProperty (marked as obsolete).
40+
+ Allow `TextBoxHelper.AutoWatermark` for `HotKey` DependencyProperty of `HotKeyBox`.
41+
+ New `TextBoxHelper.WatermarkTrimming` attached property to set the text trimming behavior to employ when (floating) watermark overflows the content area. thx to [@amkuchta](https://github.com/amkuchta)
42+
+ New `TextBoxHelper.WatermarkWrapping` attached property (only for `TextBox`) to set how the watermark should wrap text. Default is binded to `TextWrapping` property. thx to [@amkuchta](https://github.com/amkuchta)
43+
- `VS Theme` changes / enhancements
44+
+ Add `StandardGroupBox` style
45+
+ Add `StandardExpander` style
46+
+ `TabControlHelper.CloseButtonEnabled` attached property to show / hide the close button (default is true).
47+
+ `TabControlHelper.CloseTabCommand` attached property which executes if the TabItem will be closed.
48+
+ `TabControlHelper.CloseTabCommandParameter` attached property which will be passed to the CloseTabCommand.
49+
- Add `TextBoxHelper.ButtonsAlignment` support for `PasswordBox` styles [#3074](https://github.com/MahApps/MahApps.Metro/pull/3074) [@waleswood](https://github.com/waleswood)
50+
- New `MetroHeader` control which can contains any other content and can display a header on top of this content.
51+
![2017-10-11_15h58_35](https://user-images.githubusercontent.com/658431/31484999-a22c6650-af32-11e7-95e1-17f3aa3987b6.png)
52+
![2017-10-11_16h04_32](https://user-images.githubusercontent.com/658431/31485003-a52f7db0-af32-11e7-8963-b13b0da95b85.png)
53+
```
54+
<Controls:MetroHeader Margin="2" Header="TextBox Header">
55+
<Controls:MetroHeader.HeaderTemplate>
56+
<DataTemplate>
57+
<StackPanel VerticalAlignment="Center" Orientation="Horizontal">
58+
<iconPacks:PackIconMaterial VerticalAlignment="Center" Kind="FaceProfile" />
59+
<TextBlock Margin="2 0 0 0"
60+
VerticalAlignment="Center"
61+
Text="{Binding}" />
62+
</StackPanel>
63+
</DataTemplate>
64+
</Controls:MetroHeader.HeaderTemplate>
65+
<TextBox Text="Enabled" />
66+
</Controls:MetroHeader>
67+
```
68+
- New `ScrollViewerHelper` class
69+
+ New attached property `IsHorizontalScrollWheelEnabled`. If it's set to true and a horizontal ScrollBar is visible then the mouse wheel scrolls to left and right.
70+
+ Moved `VerticalScrollBarOnLeftSide` attached property from ScrollBarHelper to ScrollViewerHelper. ScrollBarHelper is now marked as obsolete.
71+
72+
## Breaking Change
73+
74+
MahApps will no longer be strong-named beginning with this version. [#3029](https://github.com/MahApps/MahApps.Metro/issues/3029)
75+
76+
Why?
77+
78+
Strong-named assemblies are only useful in some rare scenarios. If you need strong-named assembly then you can compile the source by yourself ore use the [Strong Namer](https://github.com/dsplaisted/strongnamer) from Daniel Plaisted @dsplaisted or [Strong-Name Signer](https://github.com/brutaldev/StrongNameSigner) from Werner van Deventer @brutaldev.
79+
80+
More informations about the reason of this decision can be found here:
81+
82+
- [Still Strong-Naming your Assemblies? You do know it’s 2016, right?](https://www.pedrolamas.com/2016/03/01/still-strong-naming-your-assemblies-you-do-know-its-2016-right/)
83+
- [XAML Behaviors UWP Managed 1.1.0](https://www.pedrolamas.com/2016/02/23/xaml-behaviors-uwp-managed-1-1-0/)
84+
- [Strong-Named Assemblies](https://docs.microsoft.com/en-us/dotnet/framework/app-domains/strong-named-assemblies)
85+
86+
## Closed Issues
87+
88+
- [#2926](https://github.com/MahApps/MahApps.Metro/issues/2926) IsPaneOpen property in Hamburger Menu is not properly set after opening/closing pane
89+
- [#2933](https://github.com/MahApps/MahApps.Metro/issues/2933) Hamburguer menu issue
90+
- [#2951](https://github.com/MahApps/MahApps.Metro/issues/2951) Window with showactivated=false and sizetocontent=WidthAndHeight is activated in Mahapps.Metro v1.5
91+
- [#2958](https://github.com/MahApps/MahApps.Metro/issues/2958) NumericUpDown: If HasDecimals is set to false and StringFormat was bound, HasDecimals will be set to true after unloading and loading the control
92+
- [#2963](https://github.com/MahApps/MahApps.Metro/issues/2963) WindowCommands with ItemTemplateSelector not working
93+
- [#2956](https://github.com/MahApps/MahApps.Metro/issues/2956) property ToolTip of ProgressRing does not work
94+
- [#2938](https://github.com/MahApps/MahApps.Metro/issues/2938) DataGridNumericUpDownColumn StringFormat binding
95+
- [#2622](https://github.com/MahApps/MahApps.Metro/issues/2622) DateTimePicker - Format
96+
- [#2491](https://github.com/MahApps/MahApps.Metro/issues/2491) Question: Changing font style for watermark
97+
- [#2985](https://github.com/MahApps/MahApps.Metro/issues/2985) TimePicker 24hour format selection
98+
- [#2996](https://github.com/MahApps/MahApps.Metro/issues/2996) Mahapps window steals focus
99+
- [#3000](https://github.com/MahApps/MahApps.Metro/issues/3000) Empty Watermark leaves blank border on date time controls
100+
- [#3001](https://github.com/MahApps/MahApps.Metro/issues/3001) DatePicker padding do not work
101+
- [#2727](https://github.com/MahApps/MahApps.Metro/issues/2727) Maximizing Window Fails on Rare Occasions
102+
- [#2729](https://github.com/MahApps/MahApps.Metro/issues/2729) [Enhancement] Don't remove window border if MaxWidth/MaxHeight < Resolution on maximize
103+
- [#2855](https://github.com/MahApps/MahApps.Metro/issues/2855) Maximize Window with Animations On and Max Width/Height Fails
104+
- [#2962](https://github.com/MahApps/MahApps.Metro/issues/2962) MetroStatusBar Style and Prism RegionManager
105+
- [44c2363](https://github.com/MahApps/MahApps.Metro/commit/44c236374c2393f70338b4bdcc28050e9e7e03f4) Fix possible System.Windows.Data warning for ComboBoxItem, if a ComboBox is inside a ContentControl.
106+
- [#2983](https://github.com/MahApps/MahApps.Metro/issues/2983) NumericUpDown Internal Text Doesn't Update When Expected
107+
- [#3026](https://github.com/MahApps/MahApps.Metro/issues/3026) NumericUpDown didn't update when lost focus, StringFormat has no effect to the content string
108+
- [#2952](https://github.com/MahApps/MahApps.Metro/issues/2952) NumericUpDown snap to interval
109+
- [#3031](https://github.com/MahApps/MahApps.Metro/issues/3031) NumericUpDown do not fire at certain conditions
110+
- [#3034](https://github.com/MahApps/MahApps.Metro/issues/3034) GlowBrush="{DynamicResource AccentColorBrush}" is causing a ComponentModel Exception in UpdateCore
111+
- [#3038](https://github.com/MahApps/MahApps.Metro/issues/3038) Update from Version 0.13.1 to a higher one
112+
- [#3037](https://github.com/MahApps/MahApps.Metro/issues/3037) Should we remove install.ps1 from nuspec?
113+
- [#3025](https://github.com/MahApps/MahApps.Metro/issues/3025) ComboBox popup border thickness problem
114+
- [#3043](https://github.com/MahApps/MahApps.Metro/issues/3043) Width parse error
115+
- [#3045](https://github.com/MahApps/MahApps.Metro/issues/3045) Clicking on the "X" button added by TextBoxHelper.ClearTextButton does not clear the databinding target
116+
- [#3049](https://github.com/MahApps/MahApps.Metro/issues/3049) TimePicker fails to parse times with an AM/PM. [#3050](https://github.com/MahApps/MahApps.Metro/pull/3050) [@toddburnside](https://github.com/toddburnside)
117+
- [#3054](https://github.com/MahApps/MahApps.Metro/issues/3054) WindowsSettingBehaviour broken after using ControlzEx
118+
- [#3028](https://github.com/MahApps/MahApps.Metro/issues/3028) SaveWindowPosition causes application to crash
119+
- [#3023](https://github.com/MahApps/MahApps.Metro/issues/3023) Custom Dialog Theme Issue
120+
- [#2990](https://github.com/MahApps/MahApps.Metro/issues/2990) TextBox memory leak
121+
- [#3017](https://github.com/MahApps/MahApps.Metro/issues/3017) SplitButton with custom ItemTemplate - Source change does not always update layout
122+
- [#2977](https://github.com/MahApps/MahApps.Metro/issues/2977) Badge must have a different look when disabled
123+
- [#2937](https://github.com/MahApps/MahApps.Metro/issues/2937) Fuzzy button outline [#3064](https://github.com/MahApps/MahApps.Metro/pull/3064) [@n00bje](https://github.com/n00bje)
124+
- [#3067](https://github.com/MahApps/MahApps.Metro/issues/3067) Right aligned floating Watermark goes behind clear button
125+
- [#3068](https://github.com/MahApps/MahApps.Metro/issues/3068) AutoWatermark attached property has no effect on HotKeyBox
126+
- [#2884](https://github.com/MahApps/MahApps.Metro/issues/2884) [Feature Request] Watermark Trimming
127+
- [#2889](https://github.com/MahApps/MahApps.Metro/issues/2889) [Feature Request] Watermark Wrapping
128+
- [#3070](https://github.com/MahApps/MahApps.Metro/issues/3070) VS GroupBox style
129+
- [#957](https://github.com/MahApps/MahApps.Metro/issues/957) Expander icon in VS theme
130+
- [#1731](https://github.com/MahApps/MahApps.Metro/issues/1731) VS Theme TabItem Question
131+
- [#3009](https://github.com/MahApps/MahApps.Metro/issues/3009) Floating Watermak field doesn't fit according FontSize
132+
- [#1825](https://github.com/MahApps/MahApps.Metro/pull/1825) [WIP] Header, headers, headers
133+
- [#3078](https://github.com/MahApps/MahApps.Metro/issues/3078) Not All "Grey" Values Are Set in BaseLight/BaseDark
134+
- [#2966](https://github.com/MahApps/MahApps.Metro/issues/2966) [Only visual] PasswordBox bug
135+
- [#3086](https://github.com/MahApps/MahApps.Metro/issues/3086) NumericUpDown CornerRadius Border issue.
136+
- [#3010](https://github.com/MahApps/MahApps.Metro/issues/3010) HamburgerMenu ignores Focusable and IsHitTestVisible properties

docs/v1.0-Migration-Guide.md

Lines changed: 0 additions & 22 deletions
This file was deleted.

mahapps.metro.logo.png

23.8 KB
Loading

0 commit comments

Comments
 (0)