File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
UG-Samples/SymbolPalette/ShowToolTip/ShowToolTip/Pages Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 8
8
<div style =" display :flex ;gap :20px ;" >
9
9
<div style =" width :20% " >
10
10
<div >
11
- <SfCheckBox @bind-Checked =" ShowTooltip " Label =" Show Symbol ID as Tooltip" TChecked =" bool" >
11
+ <SfCheckBox @bind-Checked =" showTooltip " Label =" Show Symbol ID as Tooltip" TChecked =" bool" >
12
12
</SfCheckBox >
13
13
</div >
14
14
<div id =" palette-space" class =" sb-mobile-palette" style =" border : 2px solid #b200ff " >
24
24
25
25
@code {
26
26
// Controls tooltip visibility for symbols at runtime.
27
- private bool ShowTooltip = false ;
27
+ private bool showTooltip = false ;
28
28
private SfSymbolPaletteComponent ? symbolPalette ;
29
29
private SfDiagramComponent ? diagram ;
30
30
private SymbolMargin symbolMargin = new SymbolMargin ()
59
59
private SymbolInfo GetSymbolInfo (IDiagramObject symbol )
60
60
{
61
61
// Enable/disable tooltip display based on user preference at runtime.
62
- return new SymbolInfo { ShowTooltip = ShowTooltip };
62
+ return new SymbolInfo { ShowTooltip = showTooltip };
63
63
}
64
64
65
65
private void InitPaletteModel ()
You can’t perform that action at this time.
0 commit comments