#include <glad/glad.h>#include <GLFW/glfw3.h>#include <iostream> void framebuffer_size_callback(GLFWwindow* window, int width, int height){ glViewport ...
分类:
其他好文 时间:
2020-10-16 11:15:58
阅读次数:
33
近日在做项目时,需要将查询查来的数据在richTextBox里面分行显示,但是richTextBox默认的行间距很小,显示的数据看着很挤,视觉效果差,后查找资料,发现通过以下方法能设置richTextBox的行间距。 using System.Runtime.InteropServices; 里面粘 ...
九宫格 <?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_paren ...
分类:
移动开发 时间:
2020-10-14 20:00:28
阅读次数:
27
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" an ...
分类:
其他好文 时间:
2020-10-08 19:36:23
阅读次数:
24
购物商城 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_paren ...
分类:
移动开发 时间:
2020-10-08 19:28:46
阅读次数:
36
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" ...
分类:
其他好文 时间:
2020-10-07 21:37:42
阅读次数:
92
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" an ...
分类:
其他好文 时间:
2020-10-07 20:25:43
阅读次数:
60
Android布局 LinearLayout (线性布局) android:orientation 属性指定了排列方向是 vertical,如果指定的是horizontal,控件就会在水平方向上排列了。 android:gravity 是用 于指定文字在控件中的对齐方式 android:layout ...
分类:
移动开发 时间:
2020-10-06 21:15:46
阅读次数:
49
##layout files If a frame defined in a layout file requires an attached dataset, the data files necessary to build the dataset are referenced in the l ...
分类:
其他好文 时间:
2020-09-18 02:09:57
阅读次数:
40
强大的Razor引擎 一、Razor基础简介 Razor采用了cshtml后缀的文件名,截图如下: A、 版面布局 从图上看到,新的视图引擎已经没有了Site.Master这种MasterPage了,取而代之的是_Layout.cshtml和_ViewStart.cshtml。 _Layout.cs ...
分类:
其他好文 时间:
2020-09-17 22:56:33
阅读次数:
29