View Issue Details

IDProjectCategoryView StatusLast Update
0002849NoesisGUIUnitypublic2024-01-24 11:28
ReporterFeldruebe Assigned Tosfernandez  
PrioritynormalSeveritycrash 
Status resolvedResolutionfixed 
Product Version3.2.2 
Target Version3.2.3Fixed in Version3.2.3 
Summary0002849: Unity crashes on xaml import
Description

Unity crashes on import/reload of the xaml (see steps to reproduce).

Unity: 2022.2.20f1

Steps To Reproduce

<UserControl x:Class="Testing.Test"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Name="Root">
<UserControl.Resources>
<ControlTemplate x:Key="Template.CharacterViewSkillButtonControl" TargetType="ButtonBase">
<Grid x:Name="TemplateRoot" RenderTransformOrigin="0.5,0.5">
<Grid>
<ContentPresenter x:Name="PART_ContentPresenter"
HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
VerticalAlignment="{TemplateBinding VerticalContentAlignment}" />
<Popup x:Name="TTT" IsOpen="True">
<TextBlock Text="ABCD" />
</Popup>
</Grid>
</Grid>
</ControlTemplate>
<Style x:Key="ButtonStyle1" TargetType="{x:Type Button}">
<Setter Property="Template" Value="{StaticResource Template.CharacterViewSkillButtonControl}" />
</Style>
</UserControl.Resources>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
<Button Content="Click me" Style="{StaticResource ButtonStyle1}" Click="Button_Click" />
<TextBlock Text="{Binding Counter, ElementName=Root, StringFormat='Button clicked {0} time(s)'}"
Margin="5,0,0,0" VerticalAlignment="Center" />
</StackPanel>
</UserControl>

PlatformWindows

Activities

There are no notes attached to this issue.

Issue History

Date Modified Username Field Change
2023-11-20 13:56 Feldruebe New Issue
2023-11-20 16:01 jsantos Assigned To => sfernandez
2023-11-20 16:01 jsantos Status new => assigned
2023-11-20 16:01 jsantos Target Version => 3.2.3
2024-01-22 11:47 sfernandez Target Version 3.2.3 => 3.2.4
2024-01-22 12:05 sfernandez Target Version 3.2.4 => 3.2.3
2024-01-24 11:28 sfernandez Status assigned => resolved
2024-01-24 11:28 sfernandez Resolution open => fixed
2024-01-24 11:28 sfernandez Fixed in Version => 3.2.3
2025-10-10 13:29 jsantos Category Unity3D => Unity