From f7b71b59e24c958bc061072d3eafc0e5ddd3f28e Mon Sep 17 00:00:00 2001 From: Florian Dahn Date: Sat, 19 May 2018 23:44:36 +0200 Subject: [PATCH] Update README.md --- README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/README.md b/README.md index 9418f8a..7cbf122 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,29 @@ It is module which is based on the original TelegramBotLibrary you will find in It gives you features which will look/feel like WinForms or have a good way to create apps with actions and forms. +--- + +How to start: + +Within your empty App your need to put some initial lines including your APIKey to get things started. The "BotBase" Class will manage a lot of things for you, like system calls, action events and so on. "StartForm" is your first Formular which every user will get internally redirected to, like a start page, you could redirect from there later in code, so users won't recognize it. It needs to be a subclass of "FormBase" you will find in Namespace TelegramBotBase.Form. + + +``` + +//Prepare the System +BotBase bb = new BotBase("{YOUR API KEY}"); + +//Add Systemcommands if you like, you could catch them later +bb.SystemCalls.Add("/start"); + +//Start your Bot +bb.Start(); + +``` + + +--- + I will add more notes to it soon, so stay tuned. Warm regards