Hi,
when working with skins the OnCanResize event turns always 0 for NewValue. Changing the skinController.NativeStyle=true, the event turns the correct value. See included sample and try to drag the splitter.
Best regards
Toni
TcxSplitter - The NewSize event parameter value is 0 until the splitter size reaches the MinSize property value if sizing is initiated in the hot zone
Answers approved by DevExpress Support
We have fixed the issue described in this ticket and will include the fix in our next maintenance update. To apply this solution before the official update, request a hotfix by clicking the corresponding link for product versions you require.
Note: Hotfixes may be unavailable for beta versions and updates that are about to be released.
Hello,
I have reproduced the described behavior and forwarded this ticket to our developers for research. Meanwhile you can use a workaround demonstrating in the attached project.
Thank you for your feedback. Also setting the NewSize-variable when 0 solves the problem.
if (NewSize = 0) then
case cxSplitter1.AlignSplitter of
salBottom, salTop:
NewSize := cxSplitter1.Control.Height;
salLeft, salRight:
NewSize := cxSplitter1.Control.Width;
end;
Toni