-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ability to inspect XAML markup for gallery pages (#204)
* Added ability to see Xaml for gallery page
- Loading branch information
Showing
5 changed files
with
82 additions
and
12 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
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,15 @@ | ||
<controls:DialogWindow xmlns="https://github.com/avaloniaui" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | ||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | ||
mc:Ignorable="d" | ||
xmlns:controls="clr-namespace:Consolonia.Core.Controls;assembly=Consolonia.Core" | ||
HorizontalAlignment="Center" | ||
VerticalAlignment="Center" | ||
x:Class="Consolonia.Gallery.View.XamlDialogWindow"> | ||
<ScrollViewer HorizontalScrollBarVisibility="Visible" | ||
VerticalScrollBarVisibility="Visible" | ||
Focusable="True"> | ||
<SelectableTextBlock Name="Xaml" Text="{Binding}" /> | ||
</ScrollViewer> | ||
</controls:DialogWindow> |
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,35 @@ | ||
using System.Linq; | ||
using Avalonia; | ||
using Avalonia.Input; | ||
using Consolonia.Core.Controls; | ||
|
||
namespace Consolonia.Gallery.View | ||
{ | ||
public partial class XamlDialogWindow : DialogWindow | ||
{ | ||
public XamlDialogWindow() | ||
{ | ||
InitializeComponent(); | ||
|
||
AttachedToVisualTree += DialogWindowAttachedToVisualTree; | ||
} | ||
|
||
private void DialogWindowAttachedToVisualTree(object sender, Avalonia.VisualTreeAttachmentEventArgs e) | ||
{ | ||
AttachedToVisualTree -= DialogWindowAttachedToVisualTree; | ||
|
||
var child = this.LogicalChildren.FirstOrDefault(); | ||
if (child is InputElement input) | ||
input.AttachedToVisualTree += OnChildAttachedToVisualTree; | ||
} | ||
|
||
private void OnChildAttachedToVisualTree(object sender, VisualTreeAttachmentEventArgs e) | ||
{ | ||
if (sender is InputElement input) | ||
{ | ||
input.AttachedToVisualTree -= OnChildAttachedToVisualTree; | ||
input.Focus(); | ||
} | ||
} | ||
} | ||
} |
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