Note that there are some explanatory texts on larger screens.

plurals
  1. POIsEnabled=false for parent, but a child should be enabled
    primarykey
    data
    text
    <p>I have a XAML page with lots of components, where only of the components is a table, that looks like this</p> <pre><code>&lt;UserControl&gt; &lt;ScrollViewer CanContentScroll="True" HorizontalScrollBarVisibility="Disabled" VerticalScrollBarVisibility="Auto" PanningMode="VerticalOnly"&gt; &lt;FlowDocumentScrollViewer IsToolBarVisible="False"&gt; &lt;FlowDocument IsHyphenationEnabled="False"&gt; &lt;Table Style="{StaticResource UniversalListTemplate}" Margin="0" Padding="0"&gt; &lt;Table.Columns&gt; &lt;TableColumn Width="70" /&gt; &lt;TableColumn Width="170" /&gt; &lt;TableColumn Width="210" /&gt; &lt;/Table.Columns&gt; &lt;TableRowGroup&gt; &lt;TableRow&gt; &lt;TableCell&gt; &lt;Paragraph&gt; &lt;ContentControl Content="{StaticResource Time}" /&gt; &lt;/Paragraph&gt; &lt;/TableCell&gt; &lt;TableCell&gt; &lt;Paragraph&gt; &lt;ContentControl Content="{StaticResource Text}" /&gt; &lt;/Paragraph&gt; &lt;/TableCell&gt; &lt;TableCell&gt; &lt;Paragraph&gt; &lt;ContentControl Content="{StaticResource Measurement}" /&gt; &lt;/Paragraph&gt; &lt;/TableCell&gt; &lt;/TableRow&gt; &lt;TableRow Background="Gray" FontSize="0.1"&gt; &lt;TableCell ColumnSpan="5" /&gt; &lt;/TableRow&gt; &lt;/TableRowGroup&gt; &lt;TableRowGroup x:Name="TableDataRows"&gt; /&gt; &lt;/Table&gt; &lt;/FlowDocument&gt; &lt;/FlowDocumentScrollViewer&gt; &lt;/ScrollViewer&gt; &lt;/UserControl&gt; </code></pre> <p>All items on the page should be disabled, but I need the scrolling of this component and it should not change the colour of the items.</p> <p>So can I in anyway overwrite IsEnabled for this component, so this is always enabled?</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload