View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0003917 | NoesisGUI | C++ SDK | public | 2025-01-27 02:51 | 2026-04-27 12:17 |
| Reporter | nikobarli | Assigned To | sfernandez | ||
| Priority | normal | Severity | major | ||
| Status | assigned | Resolution | open | ||
| Product Version | 3.2.4 | ||||
| Target Version | 3.2.14 | ||||
| Summary | 0003917: Weird behavior when having another Popup on top of a Popup | ||||
| Description | We found a problem when trying to use a Popup on top of another Popup. The expected behavior is as follows:
The currently observed behavior is as follows:
| ||||
| Attached Files | NoesisPopupSample.patch (1,920 bytes)
Index: Native/Src/Packages/Samples/HelloWorld/Data/MainWindow.xaml
===================================================================
--- Native/Src/Packages/Samples/HelloWorld/Data/MainWindow.xaml (revision 177917)
+++ Native/Src/Packages/Samples/HelloWorld/Data/MainWindow.xaml (working copy)
@@ -209,6 +209,26 @@
</TransformGroup>
</TextBlock.RenderTransform>
</TextBlock>
+ <Grid>
+ <ToggleButton IsChecked="{Binding IsOpen, ElementName=TempPopup}" FontSize="10" Content="Show Popup 1" Height="15" Width="100" />
+ <Popup x:Name="TempPopup" Placement="Bottom" StaysOpen="False" Focusable="False">
+ <Grid>
+ <Border Background="Green">
+ <StackPanel>
+ <TextBlock Text="In Popup!" FontSize="10"></TextBlock>
+ <ToggleButton IsChecked="{Binding IsOpen, ElementName=TempPopup2}" FontSize="10" Content="Show Popup 2" Height="15" Width="100" />
+ </StackPanel>
+ </Border>
+ <Popup x:Name="TempPopup2" Placement="Bottom" StaysOpen="False" Focusable="False">
+ <Border Background="Yellow">
+ <StackPanel>
+ <TextBlock Text="In second Popup!" FontSize="10"></TextBlock>
+ </StackPanel>
+ </Border>
+ </Popup>
+ </Grid>
+ </Popup>
+ </Grid>
</StackPanel>
</Grid>
</Grid>
| ||||
| Platform | Any | ||||
| Date Modified | Username | Field | Change |
|---|---|---|---|
| 2025-01-27 02:51 | nikobarli | New Issue | |
| 2025-01-27 02:51 | nikobarli | File Added: NoesisPopupSample.patch | |
| 2025-01-27 09:40 | sfernandez | Assigned To | => sfernandez |
| 2025-01-27 09:40 | sfernandez | Status | new => assigned |
| 2025-01-27 09:40 | sfernandez | Target Version | => 3.2.8 |
| 2025-06-06 12:52 | jsantos | Target Version | 3.2.8 => 3.2.9 |
| 2025-10-02 00:48 | jsantos | Target Version | 3.2.9 => 3.2.10 |
| 2025-10-20 18:25 | jsantos | Target Version | 3.2.10 => 3.2.11 |
| 2026-01-20 19:32 | jsantos | Target Version | 3.2.11 => 3.2.12 |
| 2026-03-04 00:39 | jsantos | Target Version | 3.2.12 => 3.2.13 |
| 2026-04-27 12:17 | jsantos | Target Version | 3.2.13 => 3.2.14 |