版本設(shè)置有一種常見的方法叫:Semantic Versioning(語義版本)
創(chuàng)新互聯(lián)專注于企業(yè)全網(wǎng)營銷推廣、網(wǎng)站重做改版、德江網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、H5建站、商城開發(fā)、集團(tuán)公司官網(wǎng)建設(shè)、外貿(mào)營銷網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計(jì)等建站業(yè)務(wù),價格優(yōu)惠性價比高,為德江等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。
這是一種成熟的版本更新方法,因此有很多相關(guān)的周邊設(shè)施可用
推薦你看看這篇文章:語義版本號(Semantic Versioning)
文中提及了GitVersion,可以在每次git提交代碼后自動生成version;
pipline用起來簡直不要太爽
IE的收藏夾導(dǎo)入可以導(dǎo)入,IE瀏覽器,文件——導(dǎo)入和導(dǎo)出,選擇導(dǎo)入收藏夾,然后選擇遨游的導(dǎo)出的htm文件,即可。
在C:\\Documents and Settings\\Administrator(用戶名)\\Favorites 文件夾下,就是以文件夾格式了。
太晚了,想不出什么好方法了。
發(fā)上來看看吧。
首先建立一個TextBox,我這里名字為TextBox2
然后放一個groupbox,在里頭放兩個Checkbox,checkbox1為粗體,checkbox2為斜體。
代碼:
Dim Bold As Boolean
Dim Italic As Boolean
Private Sub CheckBox1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox1.CheckedChanged
If CheckBox1.Checked Then
Bold = True
If Italic Then
TextBox2.Font = New Font(TextBox2.Font, FontStyle.Bold Or FontStyle.Italic)
Else
TextBox2.Font = New Font(TextBox2.Font, FontStyle.Bold)
End If
Else
Bold = False
If Italic Then
TextBox2.Font = New Font(TextBox2.Font, FontStyle.Italic)
Else
TextBox2.Font = New Font(TextBox2.Font, 0)
End If
End If
End Sub
Private Sub CheckBox2_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox2.CheckedChanged
If CheckBox2.Checked Then
Italic = True
If Bold Then
TextBox2.Font = New Font(TextBox2.Font, FontStyle.Italic Or FontStyle.Bold)
Else
TextBox2.Font = New Font(TextBox2.Font, FontStyle.Italic)
End If
Else
Italic = False
If Bold Then
TextBox2.Font = New Font(TextBox2.Font, FontStyle.Bold)
Else
TextBox2.Font = New Font(TextBox2.Font, 0)
End If
End If
End Sub
可以等等別人回答,看看有沒有更好的方法。