我在powershell 2.0中遇到了一个问题,我在可滚动的TablePanelLayout周围放置了一个边框。滚动时有一个边框残余 - 我如何获得这个补余或程序,以便在滚动时没有边框残余?这是代码:
# The part we use to count and match the right times
df1 <- ans[, .N, by = yid] %>%
mutate(time = min(df$Start) + minutes(yid))
# The part where we use the sequence from the beginning for a LEFT JOIN with the counting dataframe
df2 <- data.frame(time = dates)
dt <- merge(x = df2, y = df1, by = "time", all.x = TRUE)
dt[is.na(dt)] <- 0
以下是一些屏幕截图。第一个是我最初打开GUI时(注意蓝色边框)。第二个是在我滚动了几行之后。
更新: 看来只有在使用滚动滑块或滚动箭头时才会出现此残余,但如果单击滚动条本身进行滚动则不会出现此情况。