#include <chrono> /// nanoseconds typedef duration<_GLIBCXX_CHRONO_INT64_T, nano> nanoseconds; /// microseconds typedef duration<_GLIBCXX_CHRONO_INT64 ...
分类:
编程语言 时间:
2021-05-24 06:07:05
阅读次数:
0
目前所接触的UI动画效果有三种制作方法: 1. Animator:直接挂在组件上, controller里控制动画的播放。 由Animation, Controller组成, 动画之间的transition可以用代码控制(在箭头上加一个trigger,代码控制开关就ok了) 2. Timeline: ...
分类:
其他好文 时间:
2021-05-24 04:49:26
阅读次数:
0
<Style TargetType="DataGridCell"> <Setter Property="ToolTip" Value="{Binding RelativeSource={RelativeSource Self} ,Path=Content.Text}"/> </Style> 加入全局 ...
XML配置 * beans.xml 配置class <!-- 使用Spring来创建对象,在Spring中这些都称为Bean Bean=对象 Hello hello = new Hello(); id=变量名 class=new的对象 property相当于对象的属性,给属性设置值 --> <bea ...
分类:
编程语言 时间:
2021-05-24 03:07:02
阅读次数:
0
```python class Human: def __init__(self, name, age): self.__name = name self.__age = age @property def age(self): return self.__age @age.setter def a ...
分类:
编程语言 时间:
2021-05-24 03:06:24
阅读次数:
0
import asyncio import time async def say_after(delay, what): """使用 async 声明函数""" await asyncio.sleep(delay) print(what) async def main(): # 一个一个执行 pri ...
分类:
编程语言 时间:
2021-05-24 02:55:21
阅读次数:
0
width:80px; text-align-last: justify; text-align: justify; ...
分类:
Web程序 时间:
2021-05-24 01:44:01
阅读次数:
0
* { margin: 0; padding: 0; font-family: "Poppins",sans-serif; } body { display: flex; justify-content: center; align-items: center; background:rgb(76, ...
分类:
Web程序 时间:
2021-05-24 01:25:27
阅读次数:
0
transition簡寫屬性:transition-property transition-duration transition-timing-function transition-delay transition-property: 用于设置那个值需要过度,初始值是关键字 all,表示所有属性 ...
分类:
Web程序 时间:
2021-05-23 23:01:05
阅读次数:
0
配置响应格式 在setting中配置 REST_FRAMEWORK = { 'DEFAULT_RENDERER_CLASSES': ( # 默认响应渲染类 'rest_framework.renderers.JSONRenderer', # json渲染器 'rest_framework.rende ...
分类:
其他好文 时间:
2021-04-30 12:35:53
阅读次数:
0