Search Issue Tracker
Won't Fix
Votes
1
Found in
5.5.1p4
Issue ID
884458
Regression
No
[WSA] Native XAML component does not accept input from Independent Input Source
1. Create a new project
2. Switch platform to Windows Store
3. Go to Build Settings -> Player Settings -> Publishing Settings -> Misc and change the input source to Independent Input Source
4. Build for WSA Universal 8.1 SDK (.NET backend), Build type - XAML
5. Open Visual Studio solution
6. Add these lines of code to MainPage.xaml
<Grid Margin="0">
<SwapChainPanel x:Name="DXSwapChainPanel" Margin="0">
<Grid x:Name="ExtendedSplashGrid" Background="#FFFFFF ">
<Image x:Name="ExtendedSplashImage" Source="Assets/SplashScreen.png" VerticalAlignment="Center" HorizontalAlignment="Center"/>
</Grid>
</SwapChainPanel>
<TextBox x:Name="TextInputBox" Width="200" Height="60" VerticalAlignment="Center" HorizontalAlignment="Center">
</TextBox>
</Grid>
7. Deploy on local machine (Debug)
8. Observe, the native XAML component does not accept input
Expected result: Native XAML should accept input
Actual result: Native XAML component does not accept input
Note:
User has the issue only with 8.1
Reproduced with: 5.4.5f1, 5.5.2p2, 5.6.0f1, 2017.1.0a2
Workaround: make SwapChainPanel the root element of the XAML page, like so:
<SwapChainPanel x:Name="DXSwapChainPanel" Margin="0">
<Grid>
<TextBox x:Name="TextInputBox" Width="200" Height="60" VerticalAlignment="Center" HorizontalAlignment="Center" />
</Grid>
</SwapChainPanel>
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- UI Overlay Image gets darker on each Camera when multiple Cameras are used
- Assertion failed on expression: 'scriptedImporterClass == SCRIPTING_NULL error when opening the standalone profiler window
- Disabled assets in Import Unity Package window aren't tracked but count as being selected by user
- [Windows] Crash on GetManagerFromContext when video is playing and creating High Definition 3D Projects after FMOD failed to switch back to normal output Error appeared
- GC Alloc produced when adding items to MultiColumnListView with Auto Assign Binding
kc828600
Mar 16, 2017 12:41
The issue is happening with UWP 10 build also