Lihang Xu
Lihang Xu
加在v2.11.2里了。 需要在偏好设置的主题选项卡里设置外部CSS的文件夹:  文件夹里放一个css文件,比如下面这样的来指定样式: ```css #textBox { -fx-border-style:dashed } ```
宽度颜色这些在代码里写死了,CSS没有效
要强制使用的话得这样用,加个`!important`: ```css #textBox { -fx-border-style: dashed; -fx-border-color: blue !important; -fx-border-width: 10 !important; } ```
下个版本再完善下,选中和不选中的样式可以这样设: ```css #textBox { -fx-border-style: dashed; } #textBox:focused { -fx-border-style: dashed; -fx-border-color: blue !important; } ```
v2.12.0对CSS做了完善。选中、拖动状态下的样式也能设了 ```css #textBox { -fx-border-style: dashed; } #textBox:focused { -fx-border-style: dashed; -fx-border-color: blue !important; } #textBox:hold { -fx-border-width: 0 !important; } ```
I don't think you actually need the log. In vision camea v3, it can take a high-res photo with `enableHighQualityPhotos={true}`. But it is removed in v4 and in the docs,...
My device iPhone SE is old and cannot upgrade to iOS 16. Compatible support for old iOS versions is often needed by our company's SDK's customers. I checked your code...
横排时字体的省略号如果是居下的,竖排时旋转后会靠左,比如微软雅黑。如果原来是居中的,旋转后一般也是居中的,比如方正简体黑体。这个问题暂时没想到如何解决。 
标点符号的偏移在v1.7.9有一定改善,能根据固定宽度选择合适的起点位置
> 这个波浪号在竖排也能让它自己竖过来的话 1.7.9应该是能旋转~的