Automatak.Simulator.AboutBox.AboutBox C# (CSharp) Method

AboutBox() public method

public AboutBox ( ) : System
return System
        public AboutBox()
        {
            InitializeComponent();

            string[] lines = {

                 "This software is based on open source components with the following licenses:",
                 "",
                 "opendnp3",
                 "http://www.automatak.com/opendnp3",
                 "http://www.apache.org/licenses/LICENSE-2.0.html",
                 "",
                 "asio",
                 "http://think-async.com/",
                 "http://www.boost.org/users/license.html",
                 "",
                 "This software is distributed on an \"AS IS\" BASIS",
                 "WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.",
            };

            this.richTextBox1.Text = String.Join(Environment.NewLine, lines);
        }