Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
255
XamNumericEditor Cursor is blinking when IsReadOnly is true
posted

Hi,

I have XamNumericEditor that is set to Decimal Type. Is there any way to hide the cursor when the editor IsReadOnly Property is set to true. Having the cursor blinking like that while is read only will give the user the impression that the field is editable even though they wont be able to edit.

Please note that I can use the Enable/Disable property to avoid this issue, however the user wont be able to do any clip operations like copy/paste , and that is something required by users. So I wont to hide the cursor somehow and still get clip board operations

 

Thanks

Parents
No Data
Reply
  • 138253
    Offline posted

    Hello,

     

    Thank you for your post. I have been looking through it and I suggest you use this style in the Window's Resources:

    <Style TargetType="{x:Type igEditors:CaretElement}">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate/>
            </Setter.Value>
        </Setter>
    </Style>
    

     

    Please let me know if this helps you or you need further assistance.

     

    Looking Forward for your reply.

Children