QLabel控件基本用法'''QLabel控件setAlignment():设置文本的对齐方式setIndent():设置文本缩进text():获取文本内容setBuddy():设置伙伴关系setText():设置文本内容selectedText():返回所选择的字符setWordWrap():设置... ...
分类:
其他好文 时间:
2021-06-02 13:54:29
阅读次数:
0
更多 react-router提供了三种方式来实现路由,并没有默认的路由,需要在声明路由的时候,显式指定所使用的路由。 //v1.x <Router/> //v2.0.0 // hash history import { hashHistory } from 'react-router' <Rout ...
分类:
其他好文 时间:
2021-06-02 13:31:44
阅读次数:
0
简介 鸿蒙OS 开发SDK中对于长列表的实现ListContainer的实现较为简单,没法想RecyclerView一样通过使用不同的LayoutManager来实现复杂布局因此没法快速实现瀑布流效果。 但鸿蒙OS也都支持控件的Measure(onEstimateSize),layout(onArr ...
分类:
其他好文 时间:
2021-06-02 13:06:16
阅读次数:
0
动画只需要连续绘制图片就可以形成动画,那么就可以改变参数,使参数连续变化就可以形成动画了 以移动圆为例: //画大圆的paintprivate val paintBigCircle: Paint by lazy { Paint().apply { style = Paint.Style.FILL c ...
分类:
其他好文 时间:
2021-05-24 12:51:59
阅读次数:
0
Window { visible: true width: 640 height: 480 title: qsTr("Hello World") Item { anchors.fill: parent Rectangle { id: rect anchors.fill: parent anchors ...
分类:
其他好文 时间:
2021-05-24 12:04:25
阅读次数:
0
源码是从3DWall改造的,忘了哪下载的了,没办法贴上原链接了。 1.将UseControl改造成Control控件,这样可以在用的地方改模板即可。(内容控件的DataTemplate) 2.将Wall显示控件改成类似与ItemSource的绑定 3.实现了横向排列和竖向排列。 4.3D部分没有改, ...
<template> <view class='radarContainer'> <canvas class='radarCanvas' canvas-id='radarCanvas'></canvas> </view> </template> <script> var numCount = 3; ...
分类:
移动开发 时间:
2021-05-24 04:52:13
阅读次数:
0
CSS Grid布局 基本概念 容器 项目 Gird基本概念 容器的属性 grid-template-columns grid-template-rows grid-row-gap grid-column-gap gid-gap(3和4的简写) grid-template-areas grid-au ...
分类:
Web程序 时间:
2021-05-24 04:39:10
阅读次数:
0
contain 被替换的内容将被缩放,以在填充元素的内容框时保持其宽高比。 整个对象在填充盒子的同时保留其长宽比,因此如果宽高比与框的宽高比不匹配,该对象将被添加“黑边”。 cover 被替换的内容在保持其宽高比的同时填充元素的整个内容框。如果对象的宽高比与内容框不相匹配,该对象将被剪裁以适应内容框 ...
分类:
其他好文 时间:
2021-05-03 12:30:55
阅读次数:
0
1 package com.pingfan.array; 2 3 import java.util.Arrays; 4 5 public class ArrayDemo6 { 6 public static void main(String[] args) { 7 int[] a = {1,2,3, ...
分类:
其他好文 时间:
2021-04-30 12:43:27
阅读次数:
0