我知道从Registry / local文件中保存/加载设置......但有没有办法从Standalone projectfor_MikeFranklin@mail.com_1991.exe
本身加载一些设置和变量? (不要触摸注册表或任何外部文件)并再次在可执行文件中保存一些设置......
例如,我在文件名中使用了这样的变量:
_
所以,在应用程序中,我使用正则表达式来捕获第一个和第二个下划线.boxes {
height:100%;
}
.box {
width:33%;
height:20%;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
}
.box1 {
background: magenta;
}
.box2 {
background: cyan;
}
.box3 {
background: yellow;
}
.box4 {
background: orange;
}
.box5 {
background: purple;
}
* {
margin:0;
padding:0;
}
html, body {
height: 100%;
}
,然后将值作为变量...所以,这是我唯一的方法,将STANDALONE文件发送给其他人我定义的变量..
现在我想,如果有办法将这些变量写入/读取到文件属性或其他地方,当我将文件发送给其他人时会传递这些...