-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #521 from irihitech/image
fix: fix image binding to stretch initialization issue.
- Loading branch information
Showing
3 changed files
with
25 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
tests/Test.Ursa/ImageViewerTests/Stretch_Initial_Value/StretchValueTest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
using Avalonia.Controls; | ||
using Avalonia.Media; | ||
using Ursa.Controls; | ||
|
||
namespace Test.Ursa.Controls.ImageViewerTests.Stretch_Initial_Value; | ||
|
||
public class StretchValueTest | ||
{ | ||
[Fact] | ||
public void Stretch_Initial_Value_Does_Not_Crash() | ||
{ | ||
ImageViewer iv = new ImageViewer() | ||
{ | ||
Stretch = Stretch.UniformToFill | ||
}; | ||
} | ||
} |