A simple UI project built using WPF for creating SQL server Connection strings
- 资源大小:290.29 kB
- 上传时间:2021-06-30
- 下载次数:0次
- 浏览次数:1次
- 资源积分:1积分
-
标 签:
资 源 简 介
A simple UI project built using WPF for creating SQL server Connection strings.
This small library is meant to be used in other applications where the user need to specify a connection string to a database.
It is built to be as easy as possible to integrate into your application.
How to use:
```
ConnectionStringCreatorGUI.SqlConnectionString initialConnStr;
try
{
initialConnStr = new ConnectionStringCreatorGUI.SqlConnectionString(connectionString);
}
catch (Exception)
{
// If the connectionstring that you provided is bad then start with a blank connstr
initialConnStr = new ConnectionStringCreatorGUI.SqlConnectionString();
}
Window win = new ConnectionStringCreatorGUI.ConnectionStringBuilderWindow(initialConnStr, returnConnBuilder =>
{
文 件 列 表
ConnectionStringCreatorGUI
.svn
Behaviors
bin
ConnectionStringBuilderWindow.xaml
ConnectionStringBuilderWindow.xaml.cs
ConnectionStringCreatorGUI.csproj
ConnectionStringCreatorGUI.csproj.user
DelegateCommand.cs
MainWindowViewModel.cs
obj
Properties
SqlConnectionString.cs
SqlConnectionStringBuilder.xaml
SqlConnectionStringBuilder.xaml.cs
SQLConnectionStringBuilderGUI.sln
SQLConnectionStringBuilderGUI.suo