Value is not a hop source in the route.
See original GitHub issueHello, I have a problem with the following XAML code:
<TreeView x:Name="SettingsTree" BorderThickness="0"> <TreeView.Resources> <SolidColorBrush Color="Transparent" x:Key="{x:Static SystemColors.HighlightBrushKey}"/> </TreeView.Resources> <TreeViewItem Header="???" IsExpanded="True"> <Grid Margin="-20,0,0,0"> <Grid.ColumnDefinitions> <ColumnDefinition Width="Auto"/> <ColumnDefinition Width="*"/> </Grid.ColumnDefinitions> <TextBlock Name="Range" Grid.Column="0" Text="{lex:Loc Range}" Style="{StaticResource TextBlock.PropertyEditor}"/>
<TextBox Grid.Column="1" Text="{Binding BasicInstrumentSetting.Range,UpdateSourceTrigger=LostFocus}" ToolTip="{lex:Loc Voltage.ToolTip}" Style="{StaticResource TextBox.PropertyEditor}"
cal:Message.Attach="[Event GotKeyboardFocus] = [Action GotKeyboardFocus(Range.Text,$this.ToolTip)]"/>
</Grid>
</TreeViewItem>
</TreeView>
StackTrace Image:
My application crash with this code!!! But If I cancel in this row <TreeViewItem Header="???" IsExpanded="True"> -> IsExpanded=“True” In this way my application works.
Can I have any suggestions???
Regards, Bernardo
Issue Analytics
- State:
- Created 8 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Configure a Next Hop IP Address for Static Routes
This document describes static routes and uses a problem scenario to demonstrate when it is desirable to specify how to reach the next...
Read more >Connection troubleshoot overview - Azure Network Watcher
Max value is 100. Hop by hop path from source to destination. Type of resource. Possible values are Source, VirtualAppliance, VnetLocal, and ...
Read more >Static Route Preferences and Qualified Next Hops | Junos OS
If a static route's next-hop address is unreachable, the route is marked passive, and it is not included in the routing or forwarding...
Read more >Configuring static IP routes
The fixed administrative distance values ensure that the routing switch always prefers static IP routes over routes from other sources to the same...
Read more >BGP Attributes and Path Selection
This is a value that is local to the router and it's Cisco proprietary. The default value is 0 for all routes that...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
if you pass any parameter without “$”, then this problem occurs.
Thank you very much!!!