{"id":19084325,"url":"https://github.com/userr00t/typewritereffect","last_synced_at":"2025-11-12T14:30:47.398Z","repository":{"id":106328974,"uuid":"151767969","full_name":"UserR00T/TypeWriterEffect","owner":"UserR00T","description":"Adds a TypeWriter effect to Windows Forms Application.","archived":false,"fork":false,"pushed_at":"2019-10-22T11:51:01.000Z","size":23,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-09T07:35:22.410Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/UserR00T.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-10-05T19:24:07.000Z","updated_at":"2019-10-22T11:51:03.000Z","dependencies_parsed_at":null,"dependency_job_id":"4581c11c-a482-43b0-9bd7-b8022e1be723","html_url":"https://github.com/UserR00T/TypeWriterEffect","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/UserR00T/TypeWriterEffect","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UserR00T%2FTypeWriterEffect","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UserR00T%2FTypeWriterEffect/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UserR00T%2FTypeWriterEffect/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UserR00T%2FTypeWriterEffect/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/UserR00T","download_url":"https://codeload.github.com/UserR00T/TypeWriterEffect/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UserR00T%2FTypeWriterEffect/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":284050693,"owners_count":26939085,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-11-12T02:00:06.336Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-09T02:50:52.094Z","updated_at":"2025-11-12T14:30:47.382Z","avatar_url":"https://github.com/UserR00T.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TypeWriterEffect\n\n\u003e Adds a TypeWriter effect to Windows Forms Application.\n\n![](https://i.imgur.com/8AqlUU3.gif)\n\nVersion: [MP4](https://puu.sh/BGe5p/a6d56a0711.mp4) | [GIF](https://i.imgur.com/8AqlUU3.gif)\n\n## Installation\n\n1. Goto ``'Releases'``.\n2. Download the latest version.\n3. Reference the ``.dll`` into your Windows Forms Application project.\n\n## How to use\n1. Create a new ``Typewriter`` by typing\n```CSharp\nnew Typewriter(Label, List\u003cLabel\u003e, delayInMiliSeconds, repeatCursorTimes = 5, waitAtEndDelay = 0, start = true)\n``` \n2. You can use the ``.Stop()``, ``.Start()``, and ``.Toggle()`` methods on the ``Typewriter`` instance.\n\n## Example\n\n```CSharp\n// ...\nusing TypewriterEffect;\n// ...\npublic static Typewriter typeWriter;\nprivate void Main_Load(object sender, EventArgs e)\n{\n    var list = new List\u003cTypewriter.Label\u003e\n    {\n        new Typewriter.Label(\"TypeWriterEffect\", Typewriter.Label.LabelMode.OverwriteText),\n        new Typewriter.Label(\"Adds a TypeWriter effect to Windows Forms Application.\", Typewriter.Label.LabelMode.OverwriteText),\n        new Typewriter.Label(\"Created by UserR00T.\", Typewriter.Label.LabelMode.OverwriteText)\n    };\n    typeWriter = new Typewriter(mainLabel, list, 70, 2, 300);\n}\nprivate void ToggleBtn_Click(object sender, EventArgs e)\n{\n    typeWriter.Toggle();\n}\nprivate void ForceEnableBtn_Click(object sender, EventArgs e)\n{\n    typeWriter.Start();\n}\nprivate void ForceDisableBtn_Click(object sender, EventArgs e)\n{\n    typeWriter.Stop();\n}\nprivate void DisposeBtn_Click(object sender, EventArgs e)\n{\n    typeWriter.Dispose();\n}\n```\n\n## Methods\n\nMethod | Function\n--- | ---\n``.Start()`` | Starts the typewriter.\n``.Stop()`` | Stops the typewriter.\n``.Toggle()`` | Toggles the typewriter.\n\n## Constructor Arguments\n\n```CSharp\n public Typewriter(System.Windows.Forms.Label textLabel, List\u003cLabel\u003e messages, int delayInMiliSeconds, int repeatCursorTimes = 5, int waitAtEndDelay = 0, bool start = true)\n```\n\nArgument | Type | Default | Function\n--- | --- | --- | ---\n``Label`` | ``Label`` | --- | The label this instance should work on.\n``messages`` | ``List\u003cLabel\u003e`` | --- | List of messages it'll go through.\n``delayInMiliSeconds`` | ``int`` | --- | The delay between ticks in milliseconds.\n``repeatCursorTimes`` | ``int`` | ``5`` | How many times should it repeat the ending cursor?\n``waitAtEndDelay`` | ``int`` | ``0`` | Should it wait at the end for a specified amount of milliseconds?\n``start`` | ``bool`` | ``true`` | Start typewriter once constructed?\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuserr00t%2Ftypewritereffect","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fuserr00t%2Ftypewritereffect","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuserr00t%2Ftypewritereffect/lists"}