diff options
author | adrianknight89 <adrianknight89@outlook.com> | 2016-10-25 12:07:57 -0500 |
---|---|---|
committer | Rui Marinho <me@ruimarinho.net> | 2016-10-25 18:07:57 +0100 |
commit | b4a46d482f4b511de7e829f1cfe16aa81057560a (patch) | |
tree | 6d3323d136f973b41e3c9f555adf6f1c60afec71 /Xamarin.Forms.Controls.Issues | |
parent | 6196407f8924463e526bc96f6855560954d9d2e0 (diff) | |
download | xamarin-forms-b4a46d482f4b511de7e829f1cfe16aa81057560a.tar.gz xamarin-forms-b4a46d482f4b511de7e829f1cfe16aa81057560a.tar.bz2 xamarin-forms-b4a46d482f4b511de7e829f1cfe16aa81057560a.zip |
ScrollView should account for Content margin (#392)
* ScrollView should account for Content margin
* Unit tests for content margin
Diffstat (limited to 'Xamarin.Forms.Controls.Issues')
2 files changed, 31 insertions, 0 deletions
diff --git a/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla41418.cs b/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla41418.cs new file mode 100644 index 00000000..adda09ab --- /dev/null +++ b/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla41418.cs @@ -0,0 +1,30 @@ +using Xamarin.Forms.CustomAttributes; +using Xamarin.Forms.Internals; + +#if UITEST +using Xamarin.UITest; +using NUnit.Framework; +#endif + +namespace Xamarin.Forms.Controls +{ + [Preserve(AllMembers = true)] + [Issue(IssueTracker.Bugzilla, 41418, "Margin inside ScrollView not working properly", PlatformAffected.All)] + public class Bugzilla41418 : TestContentPage + { + protected override void Init() + { + Content = new ScrollView() + { + BackgroundColor = Color.Yellow, + Content = new BoxView + { + Margin = 100, + WidthRequest = 500, + HeightRequest = 800, + BackgroundColor = Color.Red + } + }; + } + } +}
\ No newline at end of file diff --git a/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Xamarin.Forms.Controls.Issues.Shared.projitems b/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Xamarin.Forms.Controls.Issues.Shared.projitems index 07b8d7b4..0e1f0297 100644 --- a/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Xamarin.Forms.Controls.Issues.Shared.projitems +++ b/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Xamarin.Forms.Controls.Issues.Shared.projitems @@ -114,6 +114,7 @@ <Compile Include="$(MSBuildThisFileDirectory)Bugzilla41078.cs" /> <Compile Include="$(MSBuildThisFileDirectory)Bugzilla40998.cs" /> <Compile Include="$(MSBuildThisFileDirectory)Bugzilla41205.cs" /> + <Compile Include="$(MSBuildThisFileDirectory)Bugzilla41418.cs" /> <Compile Include="$(MSBuildThisFileDirectory)Bugzilla41424.cs" /> <Compile Include="$(MSBuildThisFileDirectory)Bugzilla42069.cs" /> <Compile Include="$(MSBuildThisFileDirectory)Bugzilla42069_Page.xaml.cs"> |